Procházet zdrojové kódy

//..

release_toaliyun_real
xhxu před 3 roky
rodič
revize
1e12b40d13
3 změnil soubory, kde provedl 3 přidání a 4 odebrání
  1. +0
    -1
      mallinkService/src/main/java/com/iformall/douyin/web/api/goodlifesaas/impl/TtGoodLifeSaasGoodsServiceImpl.java
  2. +2
    -2
      mallinkService/src/main/java/com/iformall/douyin/web/bean/Product.java
  3. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/TtCouponGoodsServiceImpl.java

+ 0
- 1
mallinkService/src/main/java/com/iformall/douyin/web/api/goodlifesaas/impl/TtGoodLifeSaasGoodsServiceImpl.java Zobrazit soubor

@@ -57,7 +57,6 @@ public class TtGoodLifeSaasGoodsServiceImpl implements TtGoodLifeSaasGoodsServic
String param = "category_id=" + category_id String param = "category_id=" + category_id
+ "&product_type=" + product_type; + "&product_type=" + product_type;
String result = this.service.execute(getExecutor, apiUrl, param); String result = this.service.execute(getExecutor, apiUrl, param);

return GSON.fromJson(result, GoodsTemplateGet.class); return GSON.fromJson(result, GoodsTemplateGet.class);
} }




+ 2
- 2
mallinkService/src/main/java/com/iformall/douyin/web/bean/Product.java Zobrazit soubor

@@ -156,13 +156,13 @@ public class Product implements Serializable {
* poi id,保存时不必填写 * poi id,保存时不必填写
*/ */
@SerializedName(value = "poi_id") @SerializedName(value = "poi_id")
private Long poiId;
private String poiId;


/** /**
* 店铺id,保存时不必填写 * 店铺id,保存时不必填写
*/ */
@SerializedName(value = "supplier_id") @SerializedName(value = "supplier_id")
private Long supplierId;
private String supplierId;


} }




+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/TtCouponGoodsServiceImpl.java Zobrazit soubor

@@ -263,7 +263,7 @@ public class TtCouponGoodsServiceImpl implements TtCouponGoodsService {
if (!isSaas) { if (!isSaas) {
poiStruct.setSupplierExtId(poi.getSupplierExtId()); poiStruct.setSupplierExtId(poi.getSupplierExtId());
}else { }else {
poiStruct.setPoiId(Long.parseLong(poi.getPoiId()));
poiStruct.setPoiId(poi.getPoiId());
} }
poiList.add(poiStruct); poiList.add(poiStruct);
} }


Načítá se…
Zrušit
Uložit