xhxu 3 лет назад
Родитель
Сommit
1e12b40d13
3 измененных файлов: 3 добавлений и 4 удалений
  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 Просмотреть файл

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

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



+ 2
- 2
mallinkService/src/main/java/com/iformall/douyin/web/bean/Product.java Просмотреть файл

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

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

}



+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/TtCouponGoodsServiceImpl.java Просмотреть файл

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


Загрузка…
Отмена
Сохранить