|
@@ -4,6 +4,7 @@ import cn.dev33.satoken.stp.StpUtil;
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.fdkankan.fusion.common.PageInfo;
|
|
|
import com.fdkankan.fusion.common.ResultCode;
|
|
|
import com.fdkankan.fusion.common.ResultData;
|
|
|
import com.fdkankan.fusion.common.util.DateUtils;
|
|
@@ -174,10 +175,15 @@ public class FdService {
|
|
|
}
|
|
|
}
|
|
|
if(CollectionUtil.isEmpty(snCodesReq)){
|
|
|
- return ResultData.ok();
|
|
|
+ return ResultData.ok(new PageInfo<>(1,10,0,null));
|
|
|
}
|
|
|
param.put("snCodes",snCodesReq);
|
|
|
JSONObject fdkkResponse = fdKKClient.overallList(param,"token");
|
|
|
return fdkkResponse;
|
|
|
}
|
|
|
+
|
|
|
+ public Object getSceneProgress(String num) {
|
|
|
+ JSONObject fdkkResponse = fdKKClient.getSceneProgress(num);
|
|
|
+ return fdkkResponse;
|
|
|
+ }
|
|
|
}
|