|
@@ -4,6 +4,7 @@ import com.fdkankan.common.exception.BusinessException;
|
|
|
import com.fdkankan.common.util.JwtUtil;
|
|
|
import com.fdkankan.ucenter.common.BaseController;
|
|
|
import com.fdkankan.ucenter.common.Result;
|
|
|
+import com.fdkankan.ucenter.common.ResultData;
|
|
|
import com.fdkankan.ucenter.entity.ScenePlus;
|
|
|
import com.fdkankan.ucenter.entity.ScenePlusExt;
|
|
|
import com.fdkankan.ucenter.entity.ScenePro;
|
|
@@ -14,6 +15,7 @@ import com.fdkankan.ucenter.vo.response.CameraAppVo;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
@@ -121,4 +123,10 @@ public class LaserController extends BaseController {
|
|
|
return Result.success(vo);
|
|
|
}
|
|
|
|
|
|
+ @Value("${4dkk.laserService.basePath}")
|
|
|
+ private String basePath;
|
|
|
+ @RequestMapping(value = "/getSsDomain",method = RequestMethod.GET)
|
|
|
+ public ResultData getSsDomain(){
|
|
|
+ return ResultData.ok(basePath);
|
|
|
+ }
|
|
|
}
|