diff --git a/admin/src/api/distribution.js b/admin/src/api/distribution.js index 338319ab..df6433fd 100644 --- a/admin/src/api/distribution.js +++ b/admin/src/api/distribution.js @@ -14,18 +14,7 @@ export function configApi() { /** * @description 分销设置 -- 表单提交 */ -export function configUpdateApi(params) { - return request({ - url: '/admin/marketing/coupon/list', - method: 'get', - params - }) -} - -/** - * @description 分销设置 -- 表单提交 - */ -export function productCheckApi(data) { +export function configUpdateApi(data) { return request({ url: '/admin/store/retail/spread/manage/set', method: 'post', diff --git a/admin/src/utils/request.js b/admin/src/utils/request.js index 0f6ec3ea..ea8f9d26 100644 --- a/admin/src/utils/request.js +++ b/admin/src/utils/request.js @@ -59,9 +59,9 @@ service.interceptors.response.use( // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired; if (res.code === 401) { // to re-login - MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or integralLog in again', 'Confirm logout', { - confirmButtonText: 'Re-Login', - cancelButtonText: 'Cancel', + MessageBox.confirm('您已经登出,您可以取消停留在这个页面,或重新登录', '退出', { + confirmButtonText: '或重新登录', + cancelButtonText: '取消', type: 'warning' }).then(() => { store.dispatch('user/resetToken').then(() => { diff --git a/admin/src/views/distribution/config/index.vue b/admin/src/views/distribution/config/index.vue index 368f618c..d9fec47b 100644 --- a/admin/src/views/distribution/config/index.vue +++ b/admin/src/views/distribution/config/index.vue @@ -46,7 +46,7 @@ - + % @@ -56,7 +56,7 @@ - + % @@ -91,14 +91,14 @@ - + 满额分销最低金额: - + 立即创建 @@ -146,13 +146,14 @@ this.loading = true configUpdateApi(this.promoterForm).then(res => { this.loading = false - this.$modalSure('提交成功,是否自动下架商户低于此佣金比例的商品').then(() => { - productCheckApi().then(({ message }) => { - this.$message.success(message) - }).catch(({ message }) => { - this.$message.error(message) - }) - }) + this.$message.success('提交成功') + // this.$modalSure('提交成功,是否自动下架商户低于此佣金比例的商品').then(() => { + // productCheckApi().then(({ message }) => { + // this.$message.success(message) + // }).catch(({ message }) => { + // this.$message.error(message) + // }) + // }) }).catch((res) => { this.$message.error(res.message) this.loading = false diff --git a/admin/src/views/marketing/integral/config/index.vue b/admin/src/views/marketing/integral/config/index.vue index 223de692..0ffe94b6 100644 --- a/admin/src/views/marketing/integral/config/index.vue +++ b/admin/src/views/marketing/integral/config/index.vue @@ -6,6 +6,7 @@ :is-create="isCreate" :edit-data="editData" @submit="handlerSubmit" + v-if="isShow" /> @@ -19,6 +20,7 @@ components: { zbParser }, data() { return { + isShow: false, isCreate: 0, editData: {}, formId: 109 @@ -43,7 +45,6 @@ 'sort': 0, 'status': true } - console.log(_pram) configSaveForm(_pram).then(res => { this.getFormInfo() this.$message.success('操作成功') diff --git a/admin/src/views/systemSetting/setting/index.vue b/admin/src/views/systemSetting/setting/index.vue index c5210035..b84a3b98 100644 --- a/admin/src/views/systemSetting/setting/index.vue +++ b/admin/src/views/systemSetting/setting/index.vue @@ -208,7 +208,7 @@ export default { }) }, handlerGetTreeList() { - const _pram = { type: constants.categoryType[5].value, status: -1 } + const _pram = { type: constants.categoryType[5].value, status: 1 } this.loading = true categoryApi.treeCategroy(_pram).then(data => { this.treeList = this.handleAddArrt(data) diff --git a/admin/src/views/user/list/index.vue b/admin/src/views/user/list/index.vue index d7bc1afa..95cafdf2 100644 --- a/admin/src/views/user/list/index.vue +++ b/admin/src/views/user/list/index.vue @@ -51,12 +51,12 @@ - - + + - + @@ -69,13 +69,16 @@ 全部 + + 未知 + - + 保密 @@ -101,10 +104,10 @@ - - - - + + + + @@ -180,7 +183,7 @@ {{ props.row.createTime | filterEmpty }} - {{ props.row.lastLoginTime | filterEmpty }} + {{ props.row.updateTime | filterEmpty }} {{ props.row.cardId | filterEmpty }} @@ -232,8 +235,14 @@ > + + + arrayUnique(Integer[] arr){ + List list = new ArrayList<>(); + for (Integer integer : arr) { + if (!list.contains(integer)) { + list.add(integer); + } + } + + return list; + } } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/article/request/ArticleRequest.java b/crmeb/src/main/java/com/zbkj/crmeb/article/request/ArticleRequest.java index 6c070ec0..128b40d9 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/article/request/ArticleRequest.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/article/request/ArticleRequest.java @@ -1,17 +1,14 @@ package com.zbkj.crmeb.article.request; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; +import org.hibernate.validator.constraints.Length; import javax.validation.constraints.NotBlank; import java.io.Serializable; -import java.time.LocalDateTime; /** *

@@ -35,10 +32,12 @@ public class ArticleRequest implements Serializable { @ApiModelProperty(value = "文章标题", required = true) @NotBlank(message = "请填写文章标题") + @Length(max = 200, message = "文章标题最多200个字符") private String title; @ApiModelProperty(value = "文章作者", required = true) - @NotBlank(message = "请填写文章标题") + @NotBlank(message = "请填写文章作者") + @Length(max = 50, message = "文章作者最多50个字符") private String author; @ApiModelProperty(value = "文章图片", required = true) @@ -46,15 +45,18 @@ public class ArticleRequest implements Serializable { private String imageInput; @ApiModelProperty(value = "文章简介", required = true) + @Length(max = 200, message = "文章简介最多200个字符") @NotBlank(message = "请填写文章简介") private String synopsis; @ApiModelProperty(value = "文章分享标题", required = true) @NotBlank(message = "请填写文章分享标题") + @Length(max = 200, message = "文章分享标题最多200个字符") private String shareTitle; @ApiModelProperty(value = "文章分享简介", required = true) @NotBlank(message = "请填写文章分享简介") + @Length(max = 200, message = "文章分享简介最多200个字符") private String shareSynopsis; @ApiModelProperty(value = "排序", example = "0", required = true) diff --git a/crmeb/src/main/java/com/zbkj/crmeb/category/controller/CategoryController.java b/crmeb/src/main/java/com/zbkj/crmeb/category/controller/CategoryController.java index 65d95266..08b0000f 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/category/controller/CategoryController.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/category/controller/CategoryController.java @@ -64,6 +64,12 @@ import java.util.List; @RequestMapping(value = "/save", method = RequestMethod.POST) public CommonResult save(@Validated CategoryRequest categoryRequest){ Category category = new Category(); + + //检测标题是否存在 + if(categoryService.checkName(categoryRequest.getName(), category.getType()) > 0){ + throw new CrmebException("此分类已存在"); + } + BeanUtils.copyProperties(categoryRequest, category); category.setPath(categoryService.getPathByPId(category.getPid())); category.setExtra(systemAttachmentService.clearPrefix(category.getExtra())); diff --git a/crmeb/src/main/java/com/zbkj/crmeb/category/service/CategoryService.java b/crmeb/src/main/java/com/zbkj/crmeb/category/service/CategoryService.java index 773cdfce..e1118895 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/category/service/CategoryService.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/category/service/CategoryService.java @@ -36,4 +36,6 @@ public interface CategoryService extends IService { boolean update(CategoryRequest request, Integer id); List getChildVoListByPid(Integer pid); + + int checkName(String name, Integer type); } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/category/service/impl/CategoryServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/category/service/impl/CategoryServiceImpl.java index b7ef56a7..c74ffd12 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/category/service/impl/CategoryServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/category/service/impl/CategoryServiceImpl.java @@ -341,5 +341,21 @@ public class CategoryServiceImpl extends ServiceImpl impl objectQueryWrapper.like("path", "/"+pid+"/"); return dao.selectList(objectQueryWrapper); } + + /** + * 检测分类码是否存在 + * @param name String 分类名 + * @param type int 类型 + * @author Mr.Zhang + * @since 2020-04-16 + * @return int + */ + @Override + public int checkName(String name, Integer type) { + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper<>(); + lambdaQueryWrapper.eq(Category::getName, name) + .eq(Category::getType, type); + return dao.selectCount(lambdaQueryWrapper); + } } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/front/controller/StoreOrderController.java b/crmeb/src/main/java/com/zbkj/crmeb/front/controller/StoreOrderController.java index f49fdcad..40b141b4 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/front/controller/StoreOrderController.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/front/controller/StoreOrderController.java @@ -1,6 +1,5 @@ package com.zbkj.crmeb.front.controller; -import com.common.CommonPage; import com.common.CommonResult; import com.common.PageParamRequest; import com.utils.CrmebUtil; @@ -9,7 +8,6 @@ import com.zbkj.crmeb.front.response.ConfirmOrderResponse; import com.zbkj.crmeb.front.service.OrderService; import com.zbkj.crmeb.front.vo.OrderAgainVo; import com.zbkj.crmeb.store.request.StoreProductReplyAddRequest; -import com.zbkj.crmeb.store.response.StoreOrderListResponse; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; @@ -21,8 +19,6 @@ import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletRequest; import java.util.List; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.*; /** * @Classname StoreOrderController @@ -205,7 +201,6 @@ public class StoreOrderController { @ApiOperation(value = "退款订单验证") @RequestMapping(value = "/refund/verify", method = RequestMethod.POST) public CommonResult refundVerify(@RequestBody @Validated OrderRefundVerifyRequest request){ - return CommonResult.success(orderService.refundVerify(request)); } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/front/controller/WeChatController.java b/crmeb/src/main/java/com/zbkj/crmeb/front/controller/WeChatController.java index 547b1ea9..84886e10 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/front/controller/WeChatController.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/front/controller/WeChatController.java @@ -3,8 +3,8 @@ package com.zbkj.crmeb.front.controller; import com.common.CommonResult; import com.zbkj.crmeb.front.response.LoginResponse; import com.zbkj.crmeb.front.service.UserCenterService; +import com.zbkj.crmeb.user.request.RegisterThirdUserRequest; import com.zbkj.crmeb.wechat.model.TemplateMessage; -import com.zbkj.crmeb.wechat.response.RegisterThirdUserRequest; import com.zbkj.crmeb.wechat.service.TemplateMessageService; import com.zbkj.crmeb.wechat.service.WeChatService; import io.swagger.annotations.Api; @@ -55,8 +55,9 @@ public class WeChatController { */ @ApiOperation(value = "微信登录公共号授权登录") @RequestMapping(value = "/authorize/login", method = RequestMethod.GET) - public CommonResult login(@RequestParam String code){ - return CommonResult.success(userCenterService.weChatAuthorizeLogin(code)); + public CommonResult login(@RequestParam(value = "spread_spid", defaultValue = "0", required = false) Integer spreadUid, + @RequestParam(value = "code") String code){ + return CommonResult.success(userCenterService.weChatAuthorizeLogin(code, spreadUid)); } /** diff --git a/crmeb/src/main/java/com/zbkj/crmeb/front/request/RegisterRequest.java b/crmeb/src/main/java/com/zbkj/crmeb/front/request/RegisterRequest.java index 64173787..f0ba2721 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/front/request/RegisterRequest.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/front/request/RegisterRequest.java @@ -44,7 +44,8 @@ public class RegisterRequest implements Serializable { private String validateCode; @ApiModelProperty(value = "推广人id") - private Integer spread; + @JsonProperty(value = "spread_spid") + private Integer spread = 0; diff --git a/crmeb/src/main/java/com/zbkj/crmeb/front/service/UserCenterService.java b/crmeb/src/main/java/com/zbkj/crmeb/front/service/UserCenterService.java index 158733f1..866db144 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/front/service/UserCenterService.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/front/service/UserCenterService.java @@ -10,7 +10,7 @@ import com.zbkj.crmeb.front.response.*; import com.zbkj.crmeb.system.model.SystemUserLevel; import com.zbkj.crmeb.user.model.User; import com.zbkj.crmeb.user.model.UserBill; -import com.zbkj.crmeb.wechat.response.RegisterThirdUserRequest; +import com.zbkj.crmeb.user.request.RegisterThirdUserRequest; import java.math.BigDecimal; import java.util.List; @@ -48,7 +48,7 @@ public interface UserCenterService extends IService { UserRechargePaymentResponse recharge(UserRechargeRequest request); - LoginResponse weChatAuthorizeLogin(String code); + LoginResponse weChatAuthorizeLogin(String code, Integer spreadUid); String getLogo(); diff --git a/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/IndexServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/IndexServiceImpl.java index a7c917bd..cf537d12 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/IndexServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/IndexServiceImpl.java @@ -54,28 +54,41 @@ public class IndexServiceImpl implements IndexService { IndexProductBannerResponse indexProductBannerResponse = new IndexProductBannerResponse(); IndexStoreProductSearchRequest request = new IndexStoreProductSearchRequest(); - int gid = 0; + int gid; + String key; switch (type){ case Constants.INDEX_RECOMMEND_BANNER: //精品推荐 gid = Constants.GROUP_DATA_ID_INDEX_RECOMMEND_BANNER; + key = Constants.INDEX_BAST_LIMIT; request.setIsBest(true); break; case Constants.INDEX_HOT_BANNER: //热门榜单 gid = Constants.GROUP_DATA_ID_INDEX_HOT_BANNER; + key = Constants.INDEX_HOT_LIMIT; request.setIsHot(true); break; case Constants.INDEX_NEW_BANNER: //首发新品 gid = Constants.GROUP_DATA_ID_INDEX_NEW_BANNER; + key = Constants.INDEX_FIRST_LIMIT; request.setIsNew(true); break; case Constants.INDEX_BENEFIT_BANNER: //促销单品 gid = Constants.GROUP_DATA_ID_INDEX_BENEFIT_BANNER; + key = Constants.INDEX_SALES_LIMIT; request.setIsBenefit(true); break; default: return null; } + if(StringUtils.isNotBlank(key)){ + String num = systemConfigService.getValueByKey(Constants.INDEX_BAST_LIMIT); + if(pageParamRequest.getLimit() == 0){ + //首页limit传0,则读取默认数据, 否则后台设置的首页配置不起作用 + pageParamRequest.setLimit(Integer.parseInt(num)); + } + } + indexProductBannerResponse.setBanner(systemGroupDataService.getListMapByGid(gid)); indexProductBannerResponse.setList(productService.getIndexProduct(request, pageParamRequest).getList()); return indexProductBannerResponse; diff --git a/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/OrderServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/OrderServiceImpl.java index 9ea24afc..c97f7cc9 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/OrderServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/OrderServiceImpl.java @@ -37,7 +37,6 @@ import com.zbkj.crmeb.user.model.UserAddress; import com.zbkj.crmeb.user.service.UserAddressService; import com.zbkj.crmeb.user.service.UserService; import org.apache.commons.lang3.StringUtils; -import org.openxmlformats.schemas.spreadsheetml.x2006.main.STPageOrder; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -139,7 +138,7 @@ public class OrderServiceImpl implements OrderService { // other HashMap otherMap = new HashMap<>(); otherMap.put("offlinePostage",systemConfigService.getValueByKey("offline_postage")); - otherMap.put("integralRatio",systemConfigService.getValueByKey("integralRatio")); + otherMap.put("integralRatio",systemConfigService.getValueByKey("integral_ratio")); // 获取有效优惠券 List canUseUseCouponList = orderUtils.getCanUseCouponList(storeCartResponse); @@ -358,8 +357,8 @@ public class OrderServiceImpl implements OrderService { existStoreOrder.setRefundReasonTime(DateUtil.nowDateTime()); existStoreOrder.setRefundReasonWap(request.getText()); existStoreOrder.setRefundReasonWapExplain(request.getRefund_reason_wap_explain()); - existStoreOrder.setRefundReasonWapImg(request.getRefund_reason_wap_img()); - boolean updateOrderResult = storeOrderService.updateByEntity(existStoreOrder); + existStoreOrder.setRefundReasonWapImg(systemAttachmentService.clearPrefix(request.getRefund_reason_wap_img())); + boolean updateOrderResult = storeOrderService.updateById(existStoreOrder); if(!updateOrderResult) throw new CrmebException("申请退款失败"); HashMap smsInfo = new HashMap<>(); @@ -455,21 +454,21 @@ public class OrderServiceImpl implements OrderService { } // todo 营销活动 二期 // if(existStoreOrder.getPinkId()>0) - if(request.getFrom().equals(Constants.PAY_TYPE_WE_CHAT)){ - if(existStoreOrder.getIsChannel() == 1 || existStoreOrder.getIsChannel() == 2){ - existStoreOrder.setOrderId(CrmebUtil.randomCount(100,999)+existStoreOrder.getOrderId()); - } - } - if(request.getFrom().equals(Constants.PAY_TYPE_WE_CHAT_FROM_H5)){ - if(existStoreOrder.getIsChannel() == 0 || existStoreOrder.getIsChannel() == 1){ - existStoreOrder.setOrderId(CrmebUtil.randomCount(100,999)+existStoreOrder.getOrderId()); - } - } - if(request.getFrom().equals(Constants.PAY_TYPE_WE_CHAT_FROM_PROGRAM)){ - if(existStoreOrder.getIsChannel() == 0 || existStoreOrder.getIsChannel() == 2){ - existStoreOrder.setOrderId(CrmebUtil.randomCount(100,999)+existStoreOrder.getOrderId()); - } - } +// if(request.getFrom().equals(Constants.PAY_TYPE_WE_CHAT)){ +// if(existStoreOrder.getIsChannel() == 1 || existStoreOrder.getIsChannel() == 2){ +// existStoreOrder.setOrderId(CrmebUtil.randomCount(100,999)+existStoreOrder.getOrderId()); +// } +// } +// if(request.getFrom().equals(Constants.PAY_TYPE_WE_CHAT_FROM_H5)){ +// if(existStoreOrder.getIsChannel() == 0 || existStoreOrder.getIsChannel() == 1){ +// existStoreOrder.setOrderId(CrmebUtil.randomCount(100,999)+existStoreOrder.getOrderId()); +// } +// } +// if(request.getFrom().equals(Constants.PAY_TYPE_WE_CHAT_FROM_PROGRAM)){ +// if(existStoreOrder.getIsChannel() == 0 || existStoreOrder.getIsChannel() == 2){ +// existStoreOrder.setOrderId(CrmebUtil.randomCount(100,999)+existStoreOrder.getOrderId()); +// } +// } // 支付 if (doPayOrder(request, ip, resultMap, existStoreOrder)) return resultMap; throw new CrmebException("支付方式错误"); @@ -616,12 +615,10 @@ public class OrderServiceImpl implements OrderService { */ @Override public List getRefundReason(){ - List result = new ArrayList<>(); String reasonString = systemConfigService.getValueByKey("stor_reason"); reasonString = CrmebUtil.UnicodeToCN(reasonString); reasonString = reasonString.replace("rn", "n"); - result.addAll(Arrays.asList(reasonString.split("n"))); - return result; + return Arrays.asList(reasonString.split("\\n")); } /** @@ -744,7 +741,7 @@ public class OrderServiceImpl implements OrderService { StoreOrder existOrder = storeOrderService.getByEntityOne(storeOrderPram); if(null == existOrder) throw new CrmebException("未找到订单信息"); existOrder.setPayType(payType); - return storeOrderService.updateByEntity(existOrder); + return storeOrderService.updateById(existOrder); } ///////////////////////////////////////////////////////////////////// 自定义方法 diff --git a/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/UserCenterServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/UserCenterServiceImpl.java index 793d98bc..c18012a6 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/UserCenterServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/front/service/impl/UserCenterServiceImpl.java @@ -31,12 +31,12 @@ import com.zbkj.crmeb.user.dao.UserDao; import com.zbkj.crmeb.user.model.User; import com.zbkj.crmeb.user.model.UserBill; import com.zbkj.crmeb.user.model.UserToken; +import com.zbkj.crmeb.user.request.RegisterThirdUserRequest; import com.zbkj.crmeb.user.request.UserOperateFundsRequest; import com.zbkj.crmeb.user.service.UserAddressService; import com.zbkj.crmeb.user.service.UserBillService; import com.zbkj.crmeb.user.service.UserService; import com.zbkj.crmeb.user.service.UserTokenService; -import com.zbkj.crmeb.wechat.response.RegisterThirdUserRequest; import com.zbkj.crmeb.wechat.response.WeChatAuthorizeLoginGetOpenIdResponse; import com.zbkj.crmeb.wechat.response.WeChatAuthorizeLoginUserInfoResponse; import com.zbkj.crmeb.wechat.response.WeChatProgramAuthorizeLoginGetOpenIdResponse; @@ -434,7 +434,7 @@ public class UserCenterServiceImpl extends ServiceImpl implements */ @Override @Transactional(rollbackFor = {RuntimeException.class, Error.class, CrmebException.class}) - public LoginResponse weChatAuthorizeLogin(String code) { + public LoginResponse weChatAuthorizeLogin(String code, Integer spreadUid) { try{ WeChatAuthorizeLoginGetOpenIdResponse response = weChatService.authorizeLogin(code); User user = publicLogin(response.getOpenId(), response.getAccessToken()); @@ -442,6 +442,8 @@ public class UserCenterServiceImpl extends ServiceImpl implements LoginResponse loginResponse = new LoginResponse(); loginResponse.setToken(userService.token(user)); user.setPwd(null); + //绑定推广关系 + userService.bindSpread(user, spreadUid); loginResponse.setUser(user); return loginResponse; @@ -482,6 +484,7 @@ public class UserCenterServiceImpl extends ServiceImpl implements //TODO 是否需要强制注册用户,1 强制注册,2 需要返回数据给前端,让其输入手机号和验证码 User user = userService.registerByThird(registerThirdUserRequest, Constants.USER_LOGIN_TYPE_PUBLIC); + userTokenService.bind(openId, Constants.THIRD_LOGIN_TOKEN_TYPE_PUBLIC, user.getUid()); if(StringUtils.isNotBlank(unionId)) { //有就绑定 @@ -526,6 +529,8 @@ public class UserCenterServiceImpl extends ServiceImpl implements LoginResponse loginResponse = new LoginResponse(); loginResponse.setToken(userService.token(user)); user.setPwd(null); + //绑定推广关系 + userService.bindSpread(user, request.getSpreadPid()); loginResponse.setUser(user); return loginResponse; @@ -705,6 +710,7 @@ public class UserCenterServiceImpl extends ServiceImpl implements //TODO 是否需要强制注册用户,1 强制注册,2 需要返回数据给前端,让其输入手机号和验证码 User user = userService.registerByThird(request, Constants.USER_LOGIN_TYPE_PROGRAM); + userTokenService.bind(openId, Constants.THIRD_LOGIN_TOKEN_TYPE_PROGRAM, user.getUid()); if(StringUtils.isNotBlank(unionId)) { //有就绑定 diff --git a/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/OrderPayServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/OrderPayServiceImpl.java index e0b1de02..913da23d 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/OrderPayServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/OrderPayServiceImpl.java @@ -218,6 +218,17 @@ public class OrderPayServiceImpl extends PayService implements OrderPayService { // 更新用户下单数量 updateUserPayCount(); + + //增加经验、积分 + updateFounds(); + + } + + /** + * 更新用户积分经验 + */ + private void updateFounds() { + userService.consumeAfterUpdateUserFounds(getOrder().getUid(), getOrder().getPayPrice(), Constants.USER_BILL_TYPE_PAY_ORDER); } /** diff --git a/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/RechargePayServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/RechargePayServiceImpl.java index c4585386..1062ca20 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/RechargePayServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/payment/service/impl/RechargePayServiceImpl.java @@ -167,6 +167,9 @@ public class RechargePayServiceImpl extends PayService implements RechargePaySer getUserRecharge().setPayTime(DateUtil.nowDateTime()); userRechargeService.updateById(getUserRecharge()); + //增加经验、积分 + userService.consumeAfterUpdateUserFounds(getUserRecharge().getUid(), getUserRecharge().getPrice(), Constants.USER_BILL_TYPE_PAY_RECHARGE); + //下发模板通知 pushTempMessage(); diff --git a/crmeb/src/main/java/com/zbkj/crmeb/store/service/StoreProductCouponService.java b/crmeb/src/main/java/com/zbkj/crmeb/store/service/StoreProductCouponService.java index cb56f14f..53dcf85a 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/store/service/StoreProductCouponService.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/store/service/StoreProductCouponService.java @@ -1,9 +1,7 @@ package com.zbkj.crmeb.store.service; import com.baomidou.mybatisplus.extension.service.IService; -import com.common.PageParamRequest; import com.zbkj.crmeb.store.model.StoreProductCoupon; -import com.zbkj.crmeb.store.request.StoreProductCouponSearchRequest; import java.util.List; @@ -13,9 +11,6 @@ import java.util.List; * @date 2020-08-07 */ public interface StoreProductCouponService extends IService { - - List getList(StoreProductCouponSearchRequest request, PageParamRequest pageParamRequest); - /** * 根据产品id删除 优惠券关联信息 * @param productId 产品id diff --git a/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreOrderServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreOrderServiceImpl.java index d109cef8..889a83f9 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreOrderServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreOrderServiceImpl.java @@ -1157,7 +1157,7 @@ public class StoreOrderServiceImpl extends ServiceImpl - */ - @Override - public List getList(StoreProductCouponSearchRequest request, PageParamRequest pageParamRequest) { - PageHelper.startPage(pageParamRequest.getPage(), pageParamRequest.getLimit()); - - //带 StoreProductCoupon 类的多条件查询 - LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper<>(); - StoreProductCoupon model = new StoreProductCoupon(); - BeanUtils.copyProperties(request, model); - lambdaQueryWrapper.setEntity(model); - return dao.selectList(lambdaQueryWrapper); - } - /** * * @param productId 产品id diff --git a/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductRelationServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductRelationServiceImpl.java index 4a190704..cfa32c11 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductRelationServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductRelationServiceImpl.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.common.PageParamRequest; import com.exception.CrmebException; +import com.utils.CrmebUtil; import com.zbkj.crmeb.front.request.UserCollectAllRequest; import com.zbkj.crmeb.front.request.UserCollectRequest; import com.zbkj.crmeb.store.dao.StoreProductRelationDao; @@ -20,6 +21,7 @@ import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.util.ArrayList; +import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.stream.Collectors; @@ -118,15 +120,18 @@ public class StoreProductRelationServiceImpl extends ServiceImpl list = CrmebUtil.arrayUnique(arr); + Integer uid = userService.getUserIdException(); - deleteAll(request); //先删除所有已存在的 + deleteAll(request, uid, "collect"); //先删除所有已存在的 ArrayList storeProductRelationList = new ArrayList<>(); - for (Integer productId: request.getProductId()) { + for (Integer productId: list) { StoreProductRelation storeProductRelation = new StoreProductRelation(); storeProductRelation.setUid(uid); storeProductRelation.setType("collect"); @@ -158,10 +163,12 @@ public class StoreProductRelationServiceImpl extends ServiceImpl lambdaQueryWrapper = new LambdaQueryWrapper<>(); - lambdaQueryWrapper.in(StoreProductRelation::getProductId, (Object) request.getProductId()). - eq(StoreProductRelation::getCategory, request.getCategory()); + lambdaQueryWrapper.in(StoreProductRelation::getProductId, Arrays.asList(request.getProductId())) + .eq(StoreProductRelation::getCategory, request.getCategory()) + .eq(StoreProductRelation::getUid, uid) + .eq(StoreProductRelation::getType, type); dao.delete(lambdaQueryWrapper); } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductServiceImpl.java index 2fd53fa2..88f749ad 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/store/service/impl/StoreProductServiceImpl.java @@ -185,13 +185,14 @@ public class StoreProductServiceImpl extends ServiceImpl i + .or().eq(StoreProduct::getId, request.getKeywords()) .or().like(StoreProduct::getStoreName, request.getKeywords()) .or().like(StoreProduct::getStoreInfo, request.getKeywords()) .or().like(StoreProduct::getKeyword, request.getKeywords()) .or().like(StoreProduct::getBarCode, request.getKeywords())); } if(StringUtils.isNotBlank(request.getCateId())){ - lambdaQueryWrapper.eq(StoreProduct::getCateId, request.getCateId()); + lambdaQueryWrapper.apply(CrmebUtil.getFindInSetSql("cate_id", request.getCateId())); } lambdaQueryWrapper.orderByDesc(StoreProduct::getSort).orderByDesc(StoreProduct::getId); List storeProducts = dao.selectList(lambdaQueryWrapper); diff --git a/crmeb/src/main/java/com/zbkj/crmeb/store/utilService/OrderUtils.java b/crmeb/src/main/java/com/zbkj/crmeb/store/utilService/OrderUtils.java index 17c5e775..d77d1041 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/store/utilService/OrderUtils.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/store/utilService/OrderUtils.java @@ -254,6 +254,9 @@ public class OrderUtils { User currentUser = userService.getInfo(); Integer offliePayStatus = Integer.valueOf(systemConfigService.getValueByKey("offline_pay_status")); + + PriceGroupResponse currentOrderPriceGroup = getOrderPriceGroup(cor.getCartInfo(), null); + List exsitPayType = getPayType().stream().filter(e->{ if(offliePayStatus == 2 && e == Constants.PAY_TYPE_OFFLINE){ return false; @@ -276,7 +279,7 @@ public class OrderUtils { ua.setUid(currentUser.getUid()); ua.setId(request.getAddressId()); UserAddress currentUserAddress = userAddressService.getUserAddress(ua); - PriceGroupResponse currentOrderPriceGroup = getOrderPriceGroup(cor.getCartInfo(), currentUserAddress); + currentOrderPriceGroup = getOrderPriceGroup(cor.getCartInfo(), currentUserAddress); payPostage = currentOrderPriceGroup.getStorePostage(); } @@ -319,17 +322,22 @@ public class OrderUtils { // 积分 if(null != request.getUseIntegral() && currentUser.getIntegral().compareTo(BigDecimal.ZERO) > 0){ deductionPrice = currentUser.getIntegral().multiply(BigDecimal.valueOf(Double.valueOf(cor.getOther().get("integralRatio").toString()))); - if(deductionPrice.compareTo(payPrice) < 0){ - payPrice = payPrice.subtract(deductionPrice); - usedIntegral = currentUser.getIntegral(); - }else{ - deductionPrice = payPrice; - if(payPrice.compareTo(BigDecimal.ZERO) > 0 && usedIntegral.compareTo(BigDecimal.ZERO) > 0){ - usedIntegral = payPrice.divide(usedIntegral); - surPlusIntegral = currentUser.getIntegral().subtract(usedIntegral); + if(request.getUseIntegral()){ + if(deductionPrice.compareTo(payPrice) < 0){ + payPrice = payPrice.subtract(deductionPrice); + usedIntegral = currentUser.getIntegral(); + }else{ + deductionPrice = payPrice; + if(payPrice.compareTo(BigDecimal.ZERO) > 0 && usedIntegral.compareTo(BigDecimal.ZERO) > 0){ + usedIntegral = payPrice.divide(usedIntegral); + surPlusIntegral = currentUser.getIntegral().subtract(usedIntegral); + } + payPrice = BigDecimal.ZERO; } - payPrice = BigDecimal.ZERO; + }else{ + payPrice = currentOrderPriceGroup.getPayPrice(); } + }else{ deductionPrice = BigDecimal.ZERO; usedIntegral = BigDecimal.ZERO; diff --git a/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemUserTaskRequest.java b/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemUserTaskRequest.java index 00d4ed56..261812c1 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemUserTaskRequest.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemUserTaskRequest.java @@ -1,65 +1,65 @@ -package com.zbkj.crmeb.system.request; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; -import lombok.experimental.Accessors; - -import java.io.Serializable; - -/** - *

- * 等级任务设置 - *

- * - * @author Mr.Zhang - * @since 2020-04-13 - */ -@Data -@EqualsAndHashCode(callSuper = false) -@Accessors(chain = true) -@TableName("eb_system_user_task") -@ApiModel(value="SystemUserTask对象", description="等级任务设置") -public class SystemUserTaskRequest implements Serializable { - - private static final long serialVersionUID=1L; - - @TableId(value = "id", type = IdType.AUTO) - private Integer id; - - @ApiModelProperty(value = "任务名称") - private String name; - - @ApiModelProperty(value = "配置原名") - private String realName; - - @ApiModelProperty(value = "任务类型") - private String taskType; - - @ApiModelProperty(value = "限定数") - private Integer number; - - @ApiModelProperty(value = "等级id") - private Integer levelId; - - @ApiModelProperty(value = "排序") - private Integer sort; - - @ApiModelProperty(value = "是否显示") - private Boolean isShow; - - @ApiModelProperty(value = "是否务必达成任务,1务必达成,0=满足其一") - private Boolean isMust; - - @ApiModelProperty(value = "任务说明") - private String illustrate; - - @ApiModelProperty(value = "新增时间") - private Integer addTime; - - -} +package com.zbkj.crmeb.system.request; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +import java.io.Serializable; + +/** + *

+ * 等级任务设置 + *

+ * + * @author Mr.Zhang + * @since 2020-04-13 + */ +@Data +@EqualsAndHashCode(callSuper = false) +@Accessors(chain = true) +@TableName("eb_system_user_task") +@ApiModel(value="SystemUserTask对象", description="等级任务设置") +public class SystemUserTaskRequest implements Serializable { + + private static final long serialVersionUID=1L; + + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + @ApiModelProperty(value = "任务名称") + private String name; + + @ApiModelProperty(value = "配置原名") + private String realName; + + @ApiModelProperty(value = "任务类型") + private String taskType; + + @ApiModelProperty(value = "限定数") + private Integer number; + + @ApiModelProperty(value = "等级id") + private Integer levelId; + + @ApiModelProperty(value = "排序") + private Integer sort; + + @ApiModelProperty(value = "是否显示") + private Boolean isShow; + + @ApiModelProperty(value = "是否务必达成任务,1务必达成,0=满足其一") + private Boolean isMust; + + @ApiModelProperty(value = "任务说明") + private String illustrate; + + @ApiModelProperty(value = "新增时间") + private Integer addTime; + + +} diff --git a/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemWriteOffOrderSearchRequest.java b/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemWriteOffOrderSearchRequest.java index e800ae02..69e6af8d 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemWriteOffOrderSearchRequest.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/system/request/SystemWriteOffOrderSearchRequest.java @@ -1,6 +1,5 @@ package com.zbkj.crmeb.system.request; -import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -11,12 +10,11 @@ import java.io.Serializable; /** *

- * 微信用户表 + * 核销 *

* * @author Mr.Zhang - * @since 2020-04-11 - */ + * @since 2020-*/ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) diff --git a/crmeb/src/main/java/com/zbkj/crmeb/system/service/SystemConfigService.java b/crmeb/src/main/java/com/zbkj/crmeb/system/service/SystemConfigService.java index 75859d0e..c7624482 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/system/service/SystemConfigService.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/system/service/SystemConfigService.java @@ -36,7 +36,9 @@ public interface SystemConfigService extends IService { boolean updateOrSaveValueByName(String name, String value); - String getValueByKeyException(String uploadUrl); + String getValueByKeyException(String key); + + String getValueByKeyNotStatus(String key); boolean saveForm(SystemFormCheckRequest systemFormCheckRequest); diff --git a/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAdminServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAdminServiceImpl.java index 81f418d3..07985ffa 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAdminServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAdminServiceImpl.java @@ -22,7 +22,6 @@ import org.apache.commons.lang3.StringUtils; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import org.springframework.web.bind.annotation.RequestBody; import javax.annotation.Resource; import java.util.ArrayList; @@ -91,23 +90,21 @@ public class SystemAdminServiceImpl extends ServiceImpl roleList = systemRoleService.getList(new SystemRoleSearchRequest(), pageRole); -// for (SystemRole systemRole : roleList) { - for (SystemAdmin admin : systemAdmins) { - SystemAdminResponse sar = new SystemAdminResponse(); - BeanUtils.copyProperties(admin, sar); - if(StringUtils.isBlank(admin.getRoles())) break; - List roleIds = CrmebUtil.stringToArrayInt(admin.getRoles()); - List roleNames = new ArrayList<>(); - for (Integer roleId : roleIds) { - List hasRoles = roleList.stream().filter(e -> e.getId() == roleId).collect(Collectors.toList()); - if(hasRoles.size()> 0){ - roleNames.add(hasRoles.stream().map(SystemRole::getRoleName).collect(Collectors.joining(","))); - } + for (SystemAdmin admin : systemAdmins) { + SystemAdminResponse sar = new SystemAdminResponse(); + BeanUtils.copyProperties(admin, sar); + if(StringUtils.isBlank(admin.getRoles())) continue; + List roleIds = CrmebUtil.stringToArrayInt(admin.getRoles()); + List roleNames = new ArrayList<>(); + for (Integer roleId : roleIds) { + List hasRoles = roleList.stream().filter(e -> e.getId().equals(roleId)).collect(Collectors.toList()); + if(hasRoles.size()> 0){ + roleNames.add(hasRoles.stream().map(SystemRole::getRoleName).collect(Collectors.joining(","))); } - sar.setRoleNames(StringUtils.join(roleNames,",")); - systemAdminResponses.add(sar); } -// } + sar.setRoleNames(StringUtils.join(roleNames,",")); + systemAdminResponses.add(sar); + } return systemAdminResponses; } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAttachmentServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAttachmentServiceImpl.java index 8573eb99..f23d5938 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAttachmentServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/system/service/impl/SystemAttachmentServiceImpl.java @@ -65,7 +65,7 @@ public class SystemAttachmentServiceImpl extends ServiceImpl lambdaQueryWrapper = new LambdaQueryWrapper<>(); + lambdaQueryWrapper.select(SystemConfig::getValue).eq(SystemConfig::getName, key); + + SystemConfig systemConfig = dao.selectOne(lambdaQueryWrapper); + if(StringUtils.isBlank(systemConfig.getValue())){ + systemConfig.setValue(null); + } + return systemConfig.getValue(); + } + /** * 整体保存表单数据 * @param systemFormCheckRequest SystemFormCheckRequest 数据保存 @@ -151,11 +166,18 @@ public class SystemConfigServiceImpl extends ServiceImpl systemConfigList = new ArrayList<>(); + //批量添加 for (SystemFormItemCheckRequest systemFormItemCheckRequest : systemFormCheckRequest.getFields()) { SystemConfig systemConfig = new SystemConfig(); systemConfig.setName(systemFormItemCheckRequest.getName()); - systemConfig.setValue(systemAttachmentService.clearPrefix(systemFormItemCheckRequest.getValue())); + + String value = systemAttachmentService.clearPrefix(systemFormItemCheckRequest.getValue()); + if(StringUtils.isBlank(value)){ + //去掉图片域名之后没有数据则说明当前数据就是图片域名 + value = systemFormItemCheckRequest.getValue(); + } + systemConfig.setValue(value); systemConfig.setFormId(systemFormCheckRequest.getId()); systemConfig.setTitle(systemFormItemCheckRequest.getTitle()); systemConfigList.add(systemConfig); diff --git a/crmeb/src/main/java/com/zbkj/crmeb/task/AsyncSmsSendResult.java b/crmeb/src/main/java/com/zbkj/crmeb/task/AsyncSmsSendResult.java new file mode 100644 index 00000000..523a9b65 --- /dev/null +++ b/crmeb/src/main/java/com/zbkj/crmeb/task/AsyncSmsSendResult.java @@ -0,0 +1,43 @@ +package com.zbkj.crmeb.task; + +import com.utils.DateUtil; +import com.zbkj.crmeb.sms.model.SmsRecord; +import com.zbkj.crmeb.sms.service.SmsRecordService; +import com.zbkj.crmeb.sms.service.SmsService; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.scheduling.annotation.EnableScheduling; +import org.springframework.scheduling.annotation.Scheduled; +import org.springframework.stereotype.Component; + +/** + * @Classname AsyncSmsSendResult + * @Description 发送短信 + * @Date 2020/8/18 + * @Created by stivepeim + */ +//@Component +//@Configuration //读取配置 +//@EnableScheduling // 2.开启定时任务 +public class AsyncSmsSendResult { +// //日志 +// private static final Logger logger = LoggerFactory.getLogger(AsyncSmsSendResult.class); +// +// @Autowired +// private SmsRecordService smsRecordsService; +// +// @Scheduled(fixedDelay = 1000 * 10L) // todo 后面更改为 一分钟同步一次数据 +// public void init(){ +// logger.info("---AsyncSmsResult task------produce Data with fixed rate task: Execution Time - {}", DateUtil.nowDate()); +// try { +// smsRecordsService.consumeSmsStatus(); +// +// }catch (Exception e){ +// e.printStackTrace(); +// logger.error("AsyncSmsSend.task" + " | msg : " + e.getMessage()); +// } +// +// } +} diff --git a/crmeb/src/main/java/com/zbkj/crmeb/upload/service/impl/AsyncServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/upload/service/impl/AsyncServiceImpl.java index 8cf9433a..e4d09875 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/upload/service/impl/AsyncServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/upload/service/impl/AsyncServiceImpl.java @@ -89,6 +89,7 @@ public class AsyncServiceImpl implements AsyncService { setConf(type); cos(systemAttachmentList); default: + pre = "local"; break; } }catch (Exception e){ @@ -97,14 +98,13 @@ public class AsyncServiceImpl implements AsyncService { } private void setConf(Integer uploadType) { - -// if(uploadType > 1){ - cloudVo.setDomain(systemConfigService.getValueByKeyException(pre+"UploadUrl")); + cloudVo.setDomain(systemConfigService.getValueByKeyException(pre+"UploadUrl")); + if(uploadType > 1){ cloudVo.setAccessKey(systemConfigService.getValueByKeyException(pre+"AccessKey")); cloudVo.setSecretKey(systemConfigService.getValueByKeyException(pre+"SecretKey")); cloudVo.setBucketName(systemConfigService.getValueByKeyException(pre+"StorageName")); cloudVo.setRegion(systemConfigService.getValueByKeyException(pre+"StorageRegion")); -// } + } } /** @@ -231,7 +231,7 @@ public class AsyncServiceImpl implements AsyncService { break; } - return systemConfigService.getValueByKeyException(pre+"UploadUrl"); + return systemConfigService.getValueByKeyNotStatus(pre+"UploadUrl"); } } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/model/User.java b/crmeb/src/main/java/com/zbkj/crmeb/user/model/User.java index d0d2a591..cb4f38d5 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/model/User.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/model/User.java @@ -72,6 +72,12 @@ public class User implements Serializable { @ApiModelProperty(value = "手机号码") private String phone; + @ApiModelProperty(value = "性别") + private int sex; + + @ApiModelProperty(value = "国家") + private String country; + @ApiModelProperty(value = "添加ip") private String addIp; diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/model/UserBill.java b/crmeb/src/main/java/com/zbkj/crmeb/user/model/UserBill.java index 7ac2735c..03991928 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/model/UserBill.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/model/UserBill.java @@ -65,7 +65,7 @@ public class UserBill implements Serializable { private String mark; @ApiModelProperty(value = "0 = 带确定 1 = 有效 -1 = 无效") - private int status; + private Integer status; @ApiModelProperty(value = "创建时间") private Date updateTime; diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/request/RegisterThirdUserRequest.java b/crmeb/src/main/java/com/zbkj/crmeb/user/request/RegisterThirdUserRequest.java index e69b148b..f00c0ea0 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/request/RegisterThirdUserRequest.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/request/RegisterThirdUserRequest.java @@ -1,4 +1,4 @@ -package com.zbkj.crmeb.wechat.response; +package com.zbkj.crmeb.user.request; import com.fasterxml.jackson.annotation.JsonProperty; import io.swagger.annotations.ApiModel; diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/request/UserSearchRequest.java b/crmeb/src/main/java/com/zbkj/crmeb/user/request/UserSearchRequest.java index 71ce32de..ac8dc44d 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/request/UserSearchRequest.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/request/UserSearchRequest.java @@ -62,15 +62,9 @@ public class UserSearchRequest implements Serializable { @NotNull(message = "访问情况不能为空") private Integer accessType = 0; - @ApiModelProperty(value = "国家") + @ApiModelProperty(value = "国家,中国CN,其他OTHER") private String country; - @ApiModelProperty(value = "省份") - private String province; - - @ApiModelProperty(value = "城市") - private String city; - - @ApiModelProperty(value = "性别") + @ApiModelProperty(value = "性别,0未知,1男,2女,3保密") private String sex; } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/response/UserResponse.java b/crmeb/src/main/java/com/zbkj/crmeb/user/response/UserResponse.java index 05315754..c897fb7e 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/response/UserResponse.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/response/UserResponse.java @@ -52,6 +52,12 @@ public class UserResponse { @ApiModelProperty(value = "用户头像") private String avatar; + @ApiModelProperty(value = "性别") + private int sex; + + @ApiModelProperty(value = "国家") + private String country; + @ApiModelProperty(value = "手机号码") private String phone; @@ -112,7 +118,7 @@ public class UserResponse { @ApiModelProperty(value = "用户登陆类型,h5,wechat,routine") private String loginType; - @ApiModelProperty(value = "创建时间") + @ApiModelProperty(value = "更新时间") private Date updateTime; @ApiModelProperty(value = "创建时间") diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/service/UserService.java b/crmeb/src/main/java/com/zbkj/crmeb/user/service/UserService.java index 7472d9c4..d3762097 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/service/UserService.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/service/UserService.java @@ -14,12 +14,12 @@ import com.zbkj.crmeb.front.response.UserSpreadPeopleItemResponse; import com.zbkj.crmeb.store.model.StoreOrder; import com.zbkj.crmeb.store.request.RetailShopStairUserRequest; import com.zbkj.crmeb.user.model.User; +import com.zbkj.crmeb.user.request.RegisterThirdUserRequest; import com.zbkj.crmeb.user.request.UserOperateFundsRequest; import com.zbkj.crmeb.user.request.UserOperateIntegralMoneyRequest; import com.zbkj.crmeb.user.request.UserSearchRequest; import com.zbkj.crmeb.user.response.TopDetail; import com.zbkj.crmeb.user.response.UserResponse; -import com.zbkj.crmeb.wechat.response.RegisterThirdUserRequest; import java.math.BigDecimal; import java.util.HashMap; @@ -133,4 +133,8 @@ public interface UserService extends IService { Integer getCountByPayCount(int minPayCount, int maxPayCount); List getUserByEntity(User user); + + void consumeAfterUpdateUserFounds(Integer uid, BigDecimal price, String type); + + void bindSpread(User user, Integer spreadPid); } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserServiceImpl.java index c3362b60..1ba4067d 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserServiceImpl.java @@ -41,6 +41,7 @@ import com.zbkj.crmeb.user.model.User; import com.zbkj.crmeb.user.model.UserBill; import com.zbkj.crmeb.user.model.UserLevel; import com.zbkj.crmeb.user.model.UserSign; +import com.zbkj.crmeb.user.request.RegisterThirdUserRequest; import com.zbkj.crmeb.user.request.UserOperateFundsRequest; import com.zbkj.crmeb.user.request.UserOperateIntegralMoneyRequest; import com.zbkj.crmeb.user.request.UserSearchRequest; @@ -48,7 +49,6 @@ import com.zbkj.crmeb.user.response.TopDetail; import com.zbkj.crmeb.user.response.UserResponse; import com.zbkj.crmeb.user.service.*; import com.zbkj.crmeb.user.vo.UserOperateFundsVo; -import com.zbkj.crmeb.wechat.response.RegisterThirdUserRequest; import org.apache.commons.codec.digest.DigestUtils; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.BeanUtils; @@ -143,11 +143,18 @@ public class UserServiceImpl extends ServiceImpl implements UserS lambdaQueryWrapper.eq(User::getUserType, request.getUserType()); } + if(StringUtils.isNotBlank(request.getSex())){ + lambdaQueryWrapper.eq(User::getSex, request.getSex()); + } + + if(StringUtils.isNotBlank(request.getCountry())){ + lambdaQueryWrapper.eq(User::getCountry, request.getCountry()); + } + if(request.getStatus() != null){ lambdaQueryWrapper.eq(User::getStatus, request.getStatus()); } - dateLimitUtilVo dateLimit = DateUtil.getDateLimit(request.getData()); if(!StringUtils.isBlank(dateLimit.getStartTime())){ @@ -427,6 +434,10 @@ public class UserServiceImpl extends ServiceImpl implements UserS //生成token LoginResponse loginResponse = new LoginResponse(); loginResponse.setToken(token(user)); + + //绑定推广关系 + bindSpread(user, request.getSpread()); + loginResponse.setUser(user); long time = Constants.TOKEN_EXPRESS_MINUTES * 60; @@ -460,8 +471,8 @@ public class UserServiceImpl extends ServiceImpl implements UserS loginResponse.setToken(token(user)); user.setPwd(null); - //TODO 看分销类型 - + //绑定推广关系 + bindSpread(user, request.getSpreadPid()); loginResponse.setUser(user); @@ -801,7 +812,7 @@ public class UserServiceImpl extends ServiceImpl implements UserS tagIdValue = user.getTagId() + tagIdValue; } //清除已经删除或者去掉的id - tagIdValue = userGroupService.clean(tagIdValue); + tagIdValue = userTagService.clean(tagIdValue); if(StringUtils.isBlank(tagIdValue)){ continue; } @@ -980,7 +991,7 @@ public class UserServiceImpl extends ServiceImpl implements UserS break; } - return Constants.USER_BILL_OPERATE_LOG_TITLE.replace("{title}", request.getTitle()).replace("{$operate}", operate).replace("{$founds}", founds); + return Constants.USER_BILL_OPERATE_LOG_TITLE.replace("{$title}", request.getTitle()).replace("{$operate}", operate).replace("{$founds}", founds); } @@ -1162,6 +1173,8 @@ public class UserServiceImpl extends ServiceImpl implements UserS user.setNickname(thirdUserRequest.getNickName()); user.setAvatar(thirdUserRequest.getAvatar()); user.setSpreadUid(thirdUserRequest.getSpreadPid()); + user.setSpreadTime(DateUtil.nowDateTime()); + user.setSex(Integer.parseInt(thirdUserRequest.getSex())); user.setAddres(thirdUserRequest.getCountry() + "," + thirdUserRequest.getProvince() + "," + thirdUserRequest.getCity()); save(user); return user; @@ -1394,4 +1407,64 @@ public class UserServiceImpl extends ServiceImpl implements UserS lambdaUpdateWrapper.setEntity(user); return userDao.selectList(lambdaUpdateWrapper); } + + /** + * 消费金钱之后增加经验和积分 + * @param uid Integer 用户id + * @param price BigDecimal 实际支付金额 + * @return void + */ + @Override + public void consumeAfterUpdateUserFounds(Integer uid, BigDecimal price, String type) { + //赠送积分比例 + String integralStr = systemConfigService.getValueByKey(Constants.CONFIG_KEY_INTEGRAL_RATE); + BigDecimal integral = new BigDecimal(integralStr); + + //更新用户积分信息 + UserOperateFundsRequest founds = new UserOperateFundsRequest(); + founds.setFoundsType(type); + founds.setTitle(Constants.ORDER_LOG_MESSAGE_PAY_SUCCESS); + + founds.setUid(uid); + founds.setFoundsCategory(Constants.USER_BILL_CATEGORY_INTEGRAL); + founds.setType(1); + + //参考 CrmebUtil getRate说明 + founds.setValue(integral.multiply(price).setScale(0, BigDecimal.ROUND_DOWN)); + updateFounds(founds, true); + + //更新用户经验信息 + founds.setUid(uid); + founds.setFoundsCategory(Constants.USER_BILL_CATEGORY_EXPERIENCE); + founds.setType(1); + founds.setValue(price.setScale(0, BigDecimal.ROUND_DOWN)); + updateFounds(founds, true); + } + + /** + * 绑定分销关系 + * @param user User 用户user类 + * @param spreadUid Integer 推广人id + * @return void + */ + @Override + public void bindSpread(User user, Integer spreadUid) { + //新用户会在注册的时候单独绑定,此处只处理登录用户 + if(spreadUid == 0){ + return; + } + //如果当前用户没有绑定,并且后台配置人人分销,那么需要邦迪 + if(user.getSpreadUid() > 0){ + return; + } + + String distribution = systemConfigService.getValueByKey(Constants.CONFIG_KEY_DISTRIBUTION_TYPE); + + //人人分销 + 当前已绑定的id和推广人id不一样 + if(distribution.equals("0") && !user.getSpreadUid().equals(spreadUid)){ + user.setSpreadUid(spreadUid); + user.setSpreadTime(DateUtil.nowDateTime()); + } + updateById(user); + } } diff --git a/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserSignServiceImpl.java b/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserSignServiceImpl.java index 09cbf947..8aaaae32 100644 --- a/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserSignServiceImpl.java +++ b/crmeb/src/main/java/com/zbkj/crmeb/user/service/impl/UserSignServiceImpl.java @@ -384,6 +384,7 @@ public class UserSignServiceImpl extends ServiceImpl impl public List getListByCondition(UserSign sign, PageParamRequest pageParamRequest) { LambdaQueryWrapper lqw = new LambdaQueryWrapper<>(); lqw.setEntity(sign); + lqw.orderByDesc(UserSign::getCreateTime); return dao.selectList(lqw); } } diff --git a/crmeb/start.sh b/crmeb/start.sh index 9ea63c4f..1ea0c58c 100755 --- a/crmeb/start.sh +++ b/crmeb/start.sh @@ -4,8 +4,8 @@ startTime=`date +'%Y-%m-%d %H:%M:%S'` #接口项目站点路径(目录按照各自配置) -#APP_PATH=/www/wwwroot/api.java.crmeb.net/ -APP_PATH=/Library/WebServer/Documents/zhongbang/java/crmeb +APP_PATH=/www/wwwroot/api.java.crmeb.net/ #线上地址 +#APP_PATH=/Library/WebServer/Documents/zhongbang/java/crmeb #本地地址 #jar包文件名称 APP_NAME=$APP_PATH/target/Crmeb.jar diff --git a/crmeb_java_v1.0.sql b/crmeb_java_v1.0.sql index 58722d0a..7bd232cc 100644 --- a/crmeb_java_v1.0.sql +++ b/crmeb_java_v1.0.sql @@ -5,9 +5,9 @@ # http://www.sequelpro.com/ # https://github.com/sequelpro/sequelpro # -# Host: 121.196.17.222 (MySQL 5.7.29-log) +# Host: 127.0.0.1 (MySQL 5.7.23) # Database: crmeb_java -# Generation Time: 2020-08-13 07:59:31 +0000 +# Generation Time: 2020-08-19 09:55:52 +0000 # ************************************************************ @@ -56,14 +56,12 @@ LOCK TABLES `eb_article` WRITE; 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'); + (1,'57','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-19 16:47:18'); /*!40000 ALTER TABLE `eb_article` ENABLE KEYS */; UNLOCK TABLES; + # Dump of table eb_category # ------------------------------------------------------------ @@ -237,6 +235,7 @@ VALUES /*!40000 ALTER TABLE `eb_category` ENABLE KEYS */; UNLOCK TABLES; + # Dump of table eb_express # ------------------------------------------------------------ @@ -681,6 +680,7 @@ VALUES /*!40000 ALTER TABLE `eb_express` ENABLE KEYS */; UNLOCK TABLES; + # Dump of table eb_shipping_templates # ------------------------------------------------------------ @@ -697,16 +697,6 @@ CREATE TABLE `eb_shipping_templates` ( 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 @@ -729,15 +719,6 @@ CREATE TABLE `eb_shipping_templates_free` ( 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 @@ -762,15 +743,6 @@ CREATE TABLE `eb_shipping_templates_region` ( 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 @@ -792,90 +764,7 @@ CREATE TABLE `eb_sms_record` ( 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 # ------------------------------------------------------------ @@ -905,124 +794,7 @@ CREATE TABLE `eb_store_cart` ( 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 # ------------------------------------------------------------ @@ -1056,7 +828,7 @@ CREATE TABLE `eb_store_coupon` ( 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 # ------------------------------------------------------------ @@ -1087,7 +859,7 @@ CREATE TABLE `eb_store_coupon_user` ( 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 # ------------------------------------------------------------ @@ -1161,7 +933,7 @@ CREATE TABLE `eb_store_order` ( 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 # ------------------------------------------------------------ @@ -1182,6 +954,7 @@ CREATE TABLE `eb_store_order_info` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单购物详情表'; + # Dump of table eb_store_order_status # ------------------------------------------------------------ @@ -1197,30 +970,6 @@ CREATE TABLE `eb_store_order_status` ( ) 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 # ------------------------------------------------------------ @@ -1283,28 +1032,6 @@ CREATE TABLE `eb_store_product` ( 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 @@ -1322,83 +1049,7 @@ CREATE TABLE `eb_store_product_attr` ( 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 # ------------------------------------------------------------ @@ -1415,32 +1066,6 @@ CREATE TABLE `eb_store_product_attr_result` ( 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 @@ -1473,923 +1098,7 @@ CREATE TABLE `eb_store_product_attr_value` ( 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 # ------------------------------------------------------------ @@ -2404,56 +1113,7 @@ CREATE TABLE `eb_store_product_cate` ( 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 # ------------------------------------------------------------ @@ -2468,49 +1128,6 @@ CREATE TABLE `eb_store_product_coupon` ( 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 @@ -2525,109 +1142,7 @@ CREATE TABLE `eb_store_product_description` ( 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 # ------------------------------------------------------------ @@ -2648,6 +1163,8 @@ CREATE TABLE `eb_store_product_relation` ( KEY `category` (`category`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品点赞和收藏表'; + + # Dump of table eb_store_product_reply # ------------------------------------------------------------ @@ -2680,6 +1197,8 @@ CREATE TABLE `eb_store_product_reply` ( KEY `uid+oid` (`uid`,`oid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='评论表'; + + # Dump of table eb_store_product_rule # ------------------------------------------------------------ @@ -2692,1381 +1211,6 @@ CREATE TABLE `eb_store_product_rule` ( 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 @@ -4095,18 +1239,9 @@ CREATE TABLE `eb_system_admin` ( 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`) +INSERT INTO `eb_system_admin` (`id`, `account`, `pwd`, `real_name`, `roles`, `last_ip`, `create_time`, `update_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); + (1,'admin','L8qdg72wbeQ=','admin','1','127.0.0.1','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,1,0); /*!40000 ALTER TABLE `eb_system_admin` ENABLE KEYS */; UNLOCK TABLES; @@ -4131,348 +1266,6 @@ CREATE TABLE `eb_system_attachment` ( 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 @@ -8454,7 +5247,7 @@ 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 '字段名称', + `name` varchar(500) NOT NULL DEFAULT '' COMMENT '字段名称', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '字段提示文字', `form_id` int(10) DEFAULT '0' COMMENT '表单id', `value` varchar(5000) DEFAULT '' COMMENT '值', @@ -8493,7 +5286,6 @@ VALUES (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'), @@ -8646,233 +5438,6 @@ VALUES 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 # ------------------------------------------------------------ @@ -9089,455 +5654,6 @@ VALUES 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 # ------------------------------------------------------------ @@ -9560,16 +5676,7 @@ LOCK TABLES `eb_system_role` WRITE; 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'); + (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'); /*!40000 ALTER TABLE `eb_system_role` ENABLE KEYS */; UNLOCK TABLES; @@ -9600,45 +5707,6 @@ CREATE TABLE `eb_system_store` ( 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 @@ -9660,38 +5728,6 @@ CREATE TABLE `eb_system_store_staff` ( 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 @@ -9725,66 +5761,12 @@ VALUES (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'); + (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'); /*!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 # ------------------------------------------------------------ @@ -9850,7 +5832,7 @@ CREATE TABLE `eb_user` ( `account` varchar(32) NOT NULL DEFAULT '' COMMENT '用户账号', `pwd` varchar(32) DEFAULT '' COMMENT '用户密码', `real_name` varchar(25) DEFAULT '' COMMENT '真实姓名', - `birthday` varchar(32) DEFAULT '0' COMMENT '生日', + `birthday` varchar(32) DEFAULT '' COMMENT '生日', `card_id` varchar(20) DEFAULT '' COMMENT '身份证号码', `mark` varchar(255) DEFAULT '' COMMENT '用户备注', `partner_id` int(11) DEFAULT '0' COMMENT '合伙人id', @@ -9892,62 +5874,6 @@ CREATE TABLE `eb_user` ( 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 @@ -9978,42 +5904,6 @@ CREATE TABLE `eb_user_address` ( 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 @@ -10043,3247 +5933,6 @@ CREATE TABLE `eb_user_bill` ( 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 @@ -13327,22 +5976,6 @@ CREATE TABLE `eb_user_group` ( 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 @@ -13367,21 +6000,6 @@ CREATE TABLE `eb_user_level` ( 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 @@ -13407,164 +6025,6 @@ CREATE TABLE `eb_user_recharge` ( 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 @@ -13585,29 +6045,6 @@ CREATE TABLE `eb_user_sign` ( 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 @@ -13629,52 +6066,12 @@ VALUES (1,'初级'), (2,'中级'), (3,'高级'), - (4,'黄金'), - (5,'11'), - (7,'超级'); + (4,'黄金'); /*!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 # ------------------------------------------------------------ @@ -13692,97 +6089,6 @@ CREATE TABLE `eb_user_token` ( 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 @@ -13817,105 +6123,6 @@ VALUES 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 */; diff --git a/domain.json b/domain.json index 577e5bce..d76868e0 100644 --- a/domain.json +++ b/domain.json @@ -1,3 +1,3 @@ { - "domain":"https://api.java.crmeb.net" + "domain":"https://localhost:8080" } \ No newline at end of file