|
@@ -16,6 +16,7 @@ import com.fdkankan.ucenter.httpClient.vo.SSDownSceneVo;
|
|
|
import com.fdkankan.ucenter.service.*;
|
|
|
import com.fdkankan.ucenter.vo.response.DownVo;
|
|
|
import com.fdkankan.ucenter.vo.response.DownloadProcessVo;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.apache.ibatis.annotations.Case;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -25,6 +26,7 @@ import java.util.HashMap;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@Service
|
|
|
+@Slf4j
|
|
|
public class DownService implements IDownService {
|
|
|
|
|
|
@Autowired
|
|
@@ -60,6 +62,7 @@ public class DownService implements IDownService {
|
|
|
Integer sceneType = scenePro !=null ? scenePro.getSceneSource() : plus.getSceneSource();
|
|
|
Integer isObj = scenePro !=null ? scenePro.getIsObj() : scenePlusExtService.getByPlusId(plus.getId()).getIsObj();
|
|
|
|
|
|
+ log.info("checkDownLoad--sceneType:{},isObj:{}",sceneType,isObj);
|
|
|
if(sceneType == 4 && isObj !=1){ //深时场景
|
|
|
return SSCheckDownload(sceneNum);
|
|
|
}
|
|
@@ -130,6 +133,7 @@ public class DownService implements IDownService {
|
|
|
|
|
|
Integer isObj = scenePro !=null ? scenePro.getIsObj() : scenePlusExtService.getByPlusId(scenePlus.getId()).getIsObj();
|
|
|
|
|
|
+ log.info("down--sceneType:{},isObj:{}",sceneType,isObj);
|
|
|
if(sceneType == 4 && isObj !=1){ //深时场景
|
|
|
return SSDownload(sceneNum,userName);
|
|
|
}
|