From 70e96baf415abbe79d84cf62ea8a6719e7fa0fb5 Mon Sep 17 00:00:00 2001 From: liwan Date: Wed, 20 Oct 2021 08:56:30 +0800 Subject: [PATCH] =?UTF-8?q?2021-10-20=20=E5=95=86=E5=93=81=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=96=B0=E5=A2=9E=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/GetGoodsList.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/api/GetGoodsList.php b/api/GetGoodsList.php index 1327430..e7841e1 100644 --- a/api/GetGoodsList.php +++ b/api/GetGoodsList.php @@ -26,6 +26,9 @@ * Integer directCommissionType 定向佣金类型,3查询定向佣金商品,否则查询全部商品 * Integer choice 是否为精选商品,默认全部,1-精选商品 * Integer freeshipRemoteDistrict 偏远地区包邮,1-是,0-非偏远地区,不填默认所有商品 + * Integer flagShipStore 1-官方旗舰店商品,0-不限是否是旗舰店,不填默认为0 + * Integer isNew 1-30天新品,0-不限,不填默认为0(新品与最低价不能同时选,否则无商品) + * Integer lowestPrice 1-30天最低价,0-不限,不填默认为0(新品与最低价不能同时选,否则无商品) */ class GetGoodsList extends DtkClient { @@ -52,6 +55,9 @@ class GetGoodsList extends DtkClient protected $monthSalesLowerLimit; protected $directCommissionType; protected $choice; + protected $flagShipStore; + protected $isNew; + protected $lowestPrice; protected $freeshipRemoteDistrict; protected $methodType = 'GET'; @@ -76,7 +82,7 @@ class GetGoodsList extends DtkClient return [ 'pageId','pageSize','sort','cids','subcid','specialId','juHuaSuan','taoQiangGou','tmall','tchaoshi','goldSeller','haitao', 'pre','preSale','brand','brandIds','priceLowerLimit','priceUpperLimit','couponPriceLowerLimit','commissionRateLowerLimit', - 'monthSalesLowerLimit','freeshipRemoteDistrict','directCommissionType','choice' + 'monthSalesLowerLimit','freeshipRemoteDistrict','directCommissionType','choice' , 'flagShipStore', 'isNew', 'lowestPrice' ]; } -- Gitee