|
@@ -2,7 +2,6 @@ package com.ruixuan.isc.service;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
-import com.kuaishou.merchant.open.api.KsMerchantApiException;
|
|
|
import com.ruixuan.isc.entity.JYOrderItemList;
|
|
|
import com.ruixuan.isc.entity.KuaishouAccessToken;
|
|
|
import com.ruixuan.isc.entity.KuaishouItemList;
|
|
@@ -22,7 +21,7 @@ public interface IKuaishouItemListService {
|
|
|
* @param accessToken
|
|
|
* @return
|
|
|
*/
|
|
|
- JSONObject getItemDetail(Long regId,Long activityId, Long itemId, KuaishouAccessToken accessToken) throws Exception;
|
|
|
+ JSONObject getItemDetail(Long regId, Long activityId, Long itemId, KuaishouAccessToken accessToken) throws Exception;
|
|
|
|
|
|
KuaishouItemList getItemInfoByItemId(Long itemId);
|
|
|
|
|
@@ -44,7 +43,7 @@ public interface IKuaishouItemListService {
|
|
|
|
|
|
void removeById(Long itemId);
|
|
|
|
|
|
- void batchItemProcess(JSONArray itemIds, Integer status,Long examineId,String examineName);
|
|
|
+ void batchItemProcess(JSONArray itemIds, Integer status, Long examineId, String examineName);
|
|
|
|
|
|
List<JSONObject> getRegimental();
|
|
|
|
|
@@ -54,10 +53,10 @@ public interface IKuaishouItemListService {
|
|
|
|
|
|
JSONObject selectRuleItemByItemId(Long itemId);
|
|
|
|
|
|
- JSONObject getInvalidItemList(Long activityId, Long itemId,KuaishouAccessToken accessToken);
|
|
|
+ JSONObject getInvalidItemList(Long activityId, Long itemId, KuaishouAccessToken accessToken);
|
|
|
|
|
|
- JSONObject getInvestmentActivityOpenItemList(Long activityId, Long itemId,KuaishouAccessToken accessToken);
|
|
|
+ JSONObject getInvestmentActivityOpenItemList(Long activityId, Long itemId, KuaishouAccessToken accessToken);
|
|
|
|
|
|
- List<JYOrderItemList> getJYOrderItemList(String startDate, String endDate);
|
|
|
+ List<JYOrderItemList> getJYOrderItemList(String itemTitle, String startDate, String endDate);
|
|
|
}
|
|
|
|