Commit 8b2c584c by 何文超

增加接口

parent 48e709e1
...@@ -159,4 +159,12 @@ public class GoodsSelectorController extends BaseGoodsController { ...@@ -159,4 +159,12 @@ public class GoodsSelectorController extends BaseGoodsController {
} }
return RestResponse.failure(serviceResponse.getCode(), serviceResponse.getMessage()); return RestResponse.failure(serviceResponse.getCode(), serviceResponse.getMessage());
} }
@RequestMapping("check-selector-goods-hit")
public RestResponse checkSelectorGoodsHit(Long goodsSelectorId, String goodsCode, String skuCode) {
ServiceResponse<Boolean> serviceResponse =
goodsSelectorApiService.isSelectorHitGoods(goodsSelectorId, goodsCode, skuCode, 1129);
return RestResponse.success(serviceResponse.getResult());
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment