yujian
2019-07-19 8222e8b237c5dfb0affcdc03335bfadc06403bf8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
package com.yeshi.fanli.util.factory.goods;
 
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
 
import org.yeshi.utils.taobao.TbImgUtil;
 
import com.yeshi.fanli.dto.jd.JDCouponInfo;
import com.yeshi.fanli.dto.jd.JDShopInfo;
import com.yeshi.fanli.dto.pdd.PDDGoodsDetail;
import com.yeshi.fanli.entity.goods.CommonGoods;
import com.yeshi.fanli.entity.jd.JDGoods;
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBriefExtra;
import com.yeshi.fanli.entity.taobao.TaoBaoHongBaoInfo;
import com.yeshi.fanli.entity.taobao.TaoBaoQuanInfo;
import com.yeshi.fanli.util.CommonGoodsUtil;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.MoneyBigDecimalUtil;
import com.yeshi.fanli.util.StringUtil;
import com.yeshi.fanli.util.jd.JDUtil;
import com.yeshi.fanli.util.pinduoduo.PinDuoDuoUtil;
import com.yeshi.fanli.util.taobao.TaoBaoCouponUtil;
import com.yeshi.fanli.util.taobao.TaoBaoUtil;
import com.yeshi.fanli.vo.goods.CouponInfoVO;
import com.yeshi.fanli.vo.goods.GoodsDetailVO;
import com.yeshi.fanli.vo.goods.MoneyInfoVO;
import com.yeshi.fanli.vo.goods.ShopInfoVO;
import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
 
/**
 * 商品加工
 * 
 * @author Administrator
 *
 */
public class GoodsDetailVOFactory {
 
    /**
     * 淘宝商品组织
     * 
     * @param goods     淘宝商品
     * @param pid
     * @param fanLiRate 返利比例
     * @return
     */
    public static GoodsDetailVO convertCommonGoods(CommonGoods goods, String pid, BigDecimal fanLiRate,
            BigDecimal shareRate) {
        GoodsDetailVO goodsInfo = new GoodsDetailVO();
        goodsInfo.setGoodsId(goods.getGoodsId());
        goodsInfo.setTitle(goods.getTitle());
        
        Integer shopType = goods.getShopType();
        if (shopType == null) { 
            goodsInfo.setShopType(10); // 淘宝
        } else if (shopType == 1) {
            goodsInfo.setShopType(10); // 淘宝
        } else if (shopType == 2) {
            goodsInfo.setShopType(11); // 天猫
        } else {
            goodsInfo.setShopType(goods.getShopType());
        }
        
        Integer goodsType = goods.getGoodsType();
        if (goodsType == null) {
            goodsType = Constant.SOURCE_TYPE_TAOBAO;
        }
        
        if (goodsType == Constant.SOURCE_TYPE_PDD) {
            goodsInfo.setSalesType(4); // 总销量
        } else {
            goodsInfo.setSalesType(1); // 月销量
        }
        
        goodsInfo.setGoodsType(goodsType);
        goodsInfo.setZkPrice(goods.getPrice());
        goodsInfo.setState(goods.getState());
        goodsInfo.setSalesCount(TaoBaoUtil.getSaleCount(goods.getSales()));
 
        if (goodsType == Constant.SOURCE_TYPE_TAOBAO) {
            // 使用白底图
            if (!StringUtil.isNullOrEmpty(goods.getPictureWhite())) {
                goodsInfo.setPicUrl(TbImgUtil.getTBSize320Img(goods.getPictureWhite()));
            } else {
                goodsInfo.setPicUrl(TbImgUtil.getTBSize320Img(goods.getPicture()));
            }
        } else {
            goodsInfo.setPicUrl(goods.getPicture());
        }
        
 
        // 资金信息
        MoneyInfoVO moneyInfoVO = new MoneyInfoVO();
        moneyInfoVO.setMoneyType(1); // 默认显示:返 ¥6.6
        moneyInfoVO.setFanliMoney(CommonGoodsUtil.getCommissionInfo(goods, fanLiRate));
        moneyInfoVO.setShareMoney(CommonGoodsUtil.getCommissionInfo(goods, shareRate));
        goodsInfo.setMoneyInfo(moneyInfoVO);
 
        // 券信息
        if (goods.getCouponAmount().compareTo(BigDecimal.valueOf(0)) > 0) {
            // 计算券后价
            BigDecimal sub = goods.getPrice().subtract(goods.getCouponStartPrice());
            if (sub.compareTo(BigDecimal.valueOf(0)) >= 0) {
                BigDecimal quanPrice = MoneyBigDecimalUtil.sub(goods.getPrice(), goods.getCouponAmount());
                goodsInfo.setCouponPrice(quanPrice);
            } else {
                goodsInfo.setCouponPrice(goods.getPrice());
            }
 
            CouponInfoVO coupon = new CouponInfoVO();
            coupon.setAmount(goods.getCouponAmount());
            coupon.setLeftCount(goods.getCouponLeftCount());
            coupon.setTotalCount(goods.getCouponTotalCount());
            coupon.setStartFee(goods.getCouponStartPrice());
            goodsInfo.setHasCoupon(true);
            goodsInfo.setCouponInfo(coupon);
        }
 
        if (goodsType == Constant.SOURCE_TYPE_TAOBAO) {
            // 店铺信息
            if (!StringUtil.isNullOrEmpty(goods.getSellerName()) && goods.getSellerId() != null) {
                ShopInfoVO shop = new ShopInfoVO();
                shop.setShopName(goods.getSellerName());
                shop.setId(goods.getSellerId().toString());
                goodsInfo.setShopInfo(shop);
            }
 
        }
 
        return goodsInfo;
    }
 
    /**
     * 淘宝商品组织
     * 
     * @param goods     淘宝商品
     * @param pid
     * @param fanLiRate 返利比例
     * @return
     */
    public static GoodsDetailVO convertTaoBaoGoodsBriefExtra(TaoBaoGoodsBriefExtra goods, BigDecimal fanLiRate,
            BigDecimal shareRate) {
        GoodsDetailVO goodsInfo = new GoodsDetailVO();
        goodsInfo.setGoodsType(Constant.SOURCE_TYPE_TAOBAO);
        goodsInfo.setGoodsId(goods.getAuctionId());
        goodsInfo.setTitle(goods.getTitle());
        goodsInfo.setSalesType(1); // 默认月销量
        goodsInfo.setZkPrice(goods.getZkPrice());
        goodsInfo.setImgList(goods.getImgList());
        goodsInfo.setState(goods.getState() == null ? 0 : goods.getState());
        goodsInfo.setSalesCount(goods.getSalesCount());
        goodsInfo.setPicUrl(goods.getPictUrl());
 
        Integer shopType = goods.getUserType();
        if (shopType != null && shopType == 1) {
            goodsInfo.setShopType(11); // 天猫
        } else {
            goodsInfo.setShopType(10); // 淘宝
        }
 
        // 资金信息
        MoneyInfoVO moneyInfoVO = new MoneyInfoVO();
        moneyInfoVO.setMoneyType(1); // 默认显示:返 ¥6.6
        
        if (goods.getTkRate() == null) {
            TaoBaoHongBaoInfo taoBaoHongBaoInfo = goods.getTaoBaoHongBaoInfo();
            moneyInfoVO.setFanliMoney("¥"+ taoBaoHongBaoInfo.getHongbao());
            moneyInfoVO.setShareMoney("¥"+ taoBaoHongBaoInfo.getHongbao());
        } else {
            moneyInfoVO.setFanliMoney(TaoBaoUtil.getGoodsHongBaoInfo(goods, fanLiRate));
            moneyInfoVO.setShareMoney(TaoBaoUtil.getGoodsHongBaoInfo(goods, shareRate));
        }
        goodsInfo.setMoneyInfo(moneyInfoVO);
 
        TaoBaoQuanInfo taoBaoQuanInfo = goods.getTaoBaoQuanInfo();
        if (taoBaoQuanInfo != null) {
            goodsInfo.setCouponPrice(taoBaoQuanInfo.getCouponPrice());
            CouponInfoVO coupon = new CouponInfoVO();
            coupon.setAmount(taoBaoQuanInfo.getCouponAmount());
            coupon.setLeftCount(taoBaoQuanInfo.getCouponLeftCount());
            coupon.setTotalCount(taoBaoQuanInfo.getCouponTotalCount());
 
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd");
            String couponEffectiveEndTime = taoBaoQuanInfo.getCouponEffectiveEndTime();
            String couponEffectiveStartTime = taoBaoQuanInfo.getCouponEffectiveStartTime();
 
            coupon.setEndTime(sdf.format(new Date(Long.parseLong(couponEffectiveEndTime))));
            coupon.setStartTime(sdf.format(new Date(Long.parseLong(couponEffectiveStartTime))));
            coupon.setLink(taoBaoQuanInfo.getCouponLink());
            coupon.setStartFee(taoBaoQuanInfo.getCouponStartFee());
            goodsInfo.setHasCoupon(true);
            goodsInfo.setCouponInfo(coupon);
        }
 
        // 店铺信息
        String shopTitle = goods.getShopTitle();
        Long sellerId = goods.getSellerId();
        if (!StringUtil.isNullOrEmpty(shopTitle) && sellerId != null) {
            ShopInfoVO shop = new ShopInfoVO();
            shop.setShopName(shopTitle);
            shop.setId(goods.getSellerId().toString());
            goodsInfo.setShopInfo(shop);
        }
 
        return goodsInfo;
    }
 
    /**
     * 淘宝商品组织
     * 
     * @param goods     淘宝商品
     * @param pid
     * @param fanLiRate 返利比例
     * @return
     */
    public static GoodsDetailVO convertTaoBao(TaoBaoGoodsBrief goods, String pid, BigDecimal fanLiRate,
            BigDecimal shareRate) {
        GoodsDetailVO goodsInfo = new GoodsDetailVO();
        goodsInfo.setGoodsType(Constant.SOURCE_TYPE_TAOBAO);
        goodsInfo.setGoodsId(goods.getAuctionId());
        goodsInfo.setTitle(goods.getTitle());
        goodsInfo.setSalesType(1); // 默认月销量
        goodsInfo.setZkPrice(goods.getZkPrice());
        
        List<String> imgList = goods.getImgList();
        if (imgList != null) {
            goodsInfo.setImgList(imgList);
        } else {
            imgList = new ArrayList<String>();
            imgList.add(goods.getPictUrl());
            goodsInfo.setImgList(imgList);
        }
        
        Integer state = goods.getState();
        if (state == null) {
            goodsInfo.setState(0);
        } else {
            goodsInfo.setState(state);
        }
        
        
        goodsInfo.setSalesCount(TaoBaoUtil.getSaleCount(goods.getBiz30day()));
 
        if (!StringUtil.isNullOrEmpty(goods.getPictUrlWhite())) {
            goodsInfo.setPicUrl(TbImgUtil.getTBSize320Img(goods.getPictUrlWhite()));
        } else {
            goodsInfo.setPicUrl(TbImgUtil.getTBSize320Img(goods.getPictUrl()));
        }
 
        Integer shopType = goods.getUserType();
        if (shopType != null && shopType == 1) {
            goodsInfo.setShopType(11); // 天猫
        } else {
            goodsInfo.setShopType(10); // 淘宝
        }
 
        // 资金信息
        MoneyInfoVO moneyInfoVO = new MoneyInfoVO();
        moneyInfoVO.setMoneyType(1); // 默认显示:返 ¥6.6
        moneyInfoVO.setFanliMoney(TaoBaoUtil.getGoodsHongBaoInfo(goods, fanLiRate));
        moneyInfoVO.setShareMoney(TaoBaoUtil.getGoodsHongBaoInfo(goods, shareRate));
        goodsInfo.setMoneyInfo(moneyInfoVO);
 
        // 券信息
        if (goods.getCouponAmount().compareTo(BigDecimal.valueOf(0)) > 0) {
            // 计算券后价
            BigDecimal sub = goods.getZkPrice().subtract(goods.getCouponStartFee());
            if (sub.compareTo(BigDecimal.valueOf(0)) >= 0) {
                BigDecimal quanPrice = MoneyBigDecimalUtil.sub(goods.getZkPrice(), goods.getCouponAmount());
                goodsInfo.setCouponPrice(quanPrice);
            } else {
                goodsInfo.setCouponPrice(goods.getZkPrice());
            }
 
            CouponInfoVO coupon = new CouponInfoVO();
            coupon.setAmount(goods.getCouponAmount());
            coupon.setLeftCount(goods.getCouponLeftCount());
            coupon.setTotalCount(goods.getCouponTotalCount());
            if (goods.getCouponEffectiveEndTime() != null) {
                coupon.setEndTime(goods.getCouponEffectiveEndTime().replace("-", "."));
            }
            
            if (goods.getCouponEffectiveStartTime() != null) {
                coupon.setStartTime(goods.getCouponEffectiveStartTime().replace("-", "."));
            } 
            
            coupon.setLink(TaoBaoCouponUtil.getCoupleUrl(goods.getCouponActivityId(), pid, goods.getAuctionId() + ""));
            coupon.setStartFee(goods.getCouponStartFee());
 
            goodsInfo.setHasCoupon(true);
            goodsInfo.setCouponInfo(coupon);
        }
 
        // 店铺信息
        if (!StringUtil.isNullOrEmpty(goods.getShopTitle()) && goods.getSellerId() != null) {
            ShopInfoVO shop = new ShopInfoVO();
            shop.setShopName(goods.getShopTitle());
            shop.setId(goods.getSellerId().toString());
            goodsInfo.setShopInfo(shop);
        }
 
        return goodsInfo;
    }
 
    /**
     * 淘宝商品组织
     * 
     * @param goods     淘宝商品
     * @param pid
     * @param fanLiRate 返利比例
     * @return
     */
    public static GoodsDetailVO convertJDGoods(JDGoods goods, String pid, BigDecimal fanLiRate, BigDecimal shareRate) {
        GoodsDetailVO goodsInfo = new GoodsDetailVO();
        goodsInfo.setGoodsType(Constant.SOURCE_TYPE_JD);
        goodsInfo.setGoodsId(goods.getSkuId());
        goodsInfo.setTitle(goods.getSkuName());
        goodsInfo.setSalesType(1); // 默认月销量
        goodsInfo.setPicUrl(goods.getPicUrl());
        goodsInfo.setZkPrice(goods.getPrice());
        goodsInfo.setImgList(goods.getImageList());
        goodsInfo.setState(0);
        goodsInfo.setShopType(20); // 京东
 
        String salesCountMidea = null;
        Long count = goods.getInOrderCount30Days();
        if (count < 10000) {
            salesCountMidea = count + "";
        } else {
            double sales = count;
            salesCountMidea = String.format("%.1f", sales / 10000);
            salesCountMidea = salesCountMidea + "万";
        }
        goodsInfo.setSalesCount(salesCountMidea);
 
        
        // 资金信息
        MoneyInfoVO moneyInfoVO = new MoneyInfoVO();
        moneyInfoVO.setMoneyType(1); // 默认显示:返 ¥6.6
        moneyInfoVO.setFanliMoney("¥" + JDUtil.getGoodsFanLiMoney(goods, fanLiRate));
        moneyInfoVO.setShareMoney("¥" + JDUtil.getGoodsFanLiMoney(goods, shareRate));
        goodsInfo.setMoneyInfo(moneyInfoVO);
 
        JDCouponInfo couponInfo = goods.getCouponInfo();
        if (couponInfo != null) {
            BigDecimal discount = couponInfo.getDiscount();
            BigDecimal price = goods.getPrice();
            // 计算券后价
            BigDecimal sub = price.subtract(couponInfo.getQuota());
            if (sub.compareTo(BigDecimal.valueOf(0)) >= 0) {
                BigDecimal quanPrice = MoneyBigDecimalUtil.sub(price, discount);
                goodsInfo.setCouponPrice(quanPrice);
            } else {
                goodsInfo.setCouponPrice(price);
            }
 
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd");
            CouponInfoVO coupon = new CouponInfoVO();
            coupon.setAmount(discount);
            if (couponInfo.getGetStartTime() != null) {
                coupon.setStartTime(sdf.format(new Date(couponInfo.getGetStartTime())));
            } else {
                coupon.setStartTime(sdf.format(new Date()));
            }
 
            if (couponInfo.getGetEndTime() != null) {
                coupon.setEndTime(sdf.format(new Date(couponInfo.getGetEndTime())));
            } else {
                coupon.setEndTime(sdf.format(new Date()));
            }
            
            // TODO
//            coupon.setLeftCount(leftCount);
//            coupon.setTotalCount(totalCount);
            
            coupon.setLink(couponInfo.getLink());
            coupon.setStartFee(couponInfo.getQuota());
 
            goodsInfo.setHasCoupon(true);
            goodsInfo.setCouponInfo(coupon);
        }
 
        // 店铺信息
        JDShopInfo shopInfo = goods.getShopInfo();
        if (shopInfo != null && !StringUtil.isNullOrEmpty(shopInfo.getShopName())) {
            ShopInfoVO shop = new ShopInfoVO();
            shop.setShopName(shopInfo.getShopName());
            shop.setId(shopInfo.getShopId().toString());
            goodsInfo.setShopInfo(shop);
        }
 
        
        // 京东自营标签
        String owner = goods.getOwner();
        if (!StringUtil.isNullOrEmpty(owner) && "g".equalsIgnoreCase(owner)) {
            List<ClientTextStyleVO> labels = new ArrayList<ClientTextStyleVO>();
            ClientTextStyleVO  textStyleVO = new ClientTextStyleVO();
            textStyleVO.setContent("京东自营");
            textStyleVO.setColor("#E42219");
            labels.add(textStyleVO);
            goodsInfo.setLabels(labels);
        }
        
        return goodsInfo;
    }
 
    /**
     * 拼多多商品
     * 
     * @param goods     拼多多商品
     * @param pid
     * @param fanLiRate 返利比例
     * @return
     */
    public static GoodsDetailVO convertPDDGoods(PDDGoodsDetail goods, String pid, BigDecimal fanLiRate,
            BigDecimal shareRate) {
        GoodsDetailVO goodsInfo = new GoodsDetailVO();
        goodsInfo.setGoodsType(Constant.SOURCE_TYPE_PDD);
        goodsInfo.setGoodsId(goods.getGoodsId());
        goodsInfo.setTitle(goods.getGoodsName());
        goodsInfo.setSalesType(4); // 总销量
        goodsInfo.setPicUrl(goods.getGoodsImageUrl());
        goodsInfo.setZkPrice(new BigDecimal(goods.getMinNormalPrice()));
        goodsInfo.setShopType(30); // 拼多多
 
        String[] goodsGalleryUrls = goods.getGoodsGalleryUrls();
        if (goodsGalleryUrls != null) {
            goodsInfo.setImgList(Arrays.asList(goodsGalleryUrls));
        }
 
        Integer state = goods.getState();
        if (state == null) {
            goodsInfo.setState(0);
        } else {
            goodsInfo.setState(goods.getState());
        }
 
        // 总销量
        String salesCountMidea = null;
        Long soldQuantity = goods.getSoldQuantity();
        if (soldQuantity == null)
            soldQuantity = 0L;
 
        if (soldQuantity < 10000) {
            salesCountMidea = soldQuantity + "";
        } else {
            double sales = soldQuantity;
            salesCountMidea = String.format("%.1f", sales / 10000);
            salesCountMidea = salesCountMidea + "万";
        }
        goodsInfo.setSalesCount(salesCountMidea);
 
        // 资金信息
        MoneyInfoVO moneyInfoVO = new MoneyInfoVO();
        moneyInfoVO.setMoneyType(1); // 默认显示:返 ¥6.6
        moneyInfoVO.setFanliMoney("¥" + PinDuoDuoUtil.getGoodsFanLiMoney(goods, fanLiRate));
        moneyInfoVO.setShareMoney("¥" + PinDuoDuoUtil.getGoodsFanLiMoney(goods, shareRate));
        goodsInfo.setMoneyInfo(moneyInfoVO);
 
        Boolean hasCoupon = goods.getHasCoupon();
        if (hasCoupon != null && hasCoupon) {
            BigDecimal amount = new BigDecimal(goods.getCouponDiscount());
            BigDecimal price = new BigDecimal(goods.getMinNormalPrice());
            BigDecimal startFree = new BigDecimal(goods.getCouponMinOrderAmount());
 
            // 计算券后价
            if (startFree.compareTo(price) <= 0) {
                BigDecimal quanPrice = MoneyBigDecimalUtil.sub(price, amount);
                goodsInfo.setCouponPrice(quanPrice);
            } else {
                goodsInfo.setCouponPrice(price);
            }
 
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd");
            CouponInfoVO coupon = new CouponInfoVO();
            coupon.setAmount(amount);
            if (goods.getCouponStartTime() != null) {
                coupon.setStartTime(sdf.format(new Date(goods.getCouponStartTime() * 1000)));
            }
 
            if (goods.getCouponEndTime() != null) {
                coupon.setEndTime(sdf.format(new Date(goods.getCouponEndTime() * 1000)));
            }
            coupon.setLink(null);
            coupon.setStartFee(startFree);
 
            if (goods.getCouponTotalQuantity() != null)
                coupon.setTotalCount(Integer.parseInt(goods.getCouponTotalQuantity().toString()));
 
            if (goods.getCouponRemainQuantity() != null)
                coupon.setLeftCount(Integer.parseInt(goods.getCouponRemainQuantity().toString()));
 
            goodsInfo.setHasCoupon(true);
            goodsInfo.setCouponInfo(coupon);
        }
 
        // 店铺信息
        String mallName = goods.getMallName();
        if (!StringUtil.isMobile(mallName)) {
            ShopInfoVO shop = new ShopInfoVO();
            shop.setShopName(mallName);
            if (goods.getMallId() != null) {
                shop.setId(goods.getMallId().toString());
            }
            goodsInfo.setShopInfo(shop);
        }
 
        return goodsInfo;
    }
 
}