|
@@ -32,6 +32,7 @@ public interface IGoodsDescClient {
|
|
|
String TERRAC_ECODE = API_PREFIX + "terraceCode";
|
|
String TERRAC_ECODE = API_PREFIX + "terraceCode";
|
|
|
String GET_TERRAC_ECODE = API_PREFIX + "getTerraceCode";
|
|
String GET_TERRAC_ECODE = API_PREFIX + "getTerraceCode";
|
|
|
String GET_GOODS_DESC_DETIAL = API_PREFIX+ "getGoodsDescDetail";
|
|
String GET_GOODS_DESC_DETIAL = API_PREFIX+ "getGoodsDescDetail";
|
|
|
|
|
+ String GET_GOODS_DESC = API_PREFIX+ "getGoodsDesc";
|
|
|
String GET_GOODS_DESC_BY_CNAME = API_PREFIX+ "getGoodsDescByCname";
|
|
String GET_GOODS_DESC_BY_CNAME = API_PREFIX+ "getGoodsDescByCname";
|
|
|
String GOODS_ITEMSID = API_PREFIX+ "selectItemsIdGoods";
|
|
String GOODS_ITEMSID = API_PREFIX+ "selectItemsIdGoods";
|
|
|
String GOODS_ALL = API_PREFIX+ "selectGoodsDescAll";
|
|
String GOODS_ALL = API_PREFIX+ "selectGoodsDescAll";
|
|
@@ -167,6 +168,16 @@ public interface IGoodsDescClient {
|
|
|
@GetMapping(GET_GOODS_DESC_DETIAL)
|
|
@GetMapping(GET_GOODS_DESC_DETIAL)
|
|
|
GoodsDesc getGoodsDescDetail(@RequestParam("Id") Long Id);
|
|
GoodsDesc getGoodsDescDetail(@RequestParam("Id") Long Id);
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 根据商品id租户号获取商品信息
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param Id 商品id
|
|
|
|
|
+ * @param tenantId 租户号
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @GetMapping(GET_GOODS_DESC)
|
|
|
|
|
+ GoodsDesc getGoodsDesc(@RequestParam("Id") Long Id, @RequestParam("tenantId") String tenantId);
|
|
|
|
|
+
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取商品信息
|
|
* 获取商品信息
|