|
@@ -39,8 +39,8 @@ public class KwaiJSTController {
|
|
|
if (Check.isNull(requestJson)) {
|
|
|
throw new Exception("请输入参数");
|
|
|
}
|
|
|
- String skuNick = requestJson.getString("skuNick");
|
|
|
- if (Check.isNull(skuNick)) {
|
|
|
+ String skuId = requestJson.getString("skuId");
|
|
|
+ if (Check.isNull(skuId)) {
|
|
|
throw new Exception("请输入sku");
|
|
|
}
|
|
|
Integer dataType = requestJson.getInteger("dataType");
|
|
@@ -56,7 +56,7 @@ public class KwaiJSTController {
|
|
|
@Override
|
|
|
public void run() {
|
|
|
try {
|
|
|
- kwaiJSTService.costDetail(skuNick, dataType, date);
|
|
|
+ kwaiJSTService.costDetail(skuId, dataType, date);
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|