|
@@ -29,6 +29,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
import java.util.Objects;
|
|
import java.util.Objects;
|
|
@@ -53,7 +54,7 @@ public class JySceneUserAuthServiceImpl extends ServiceImpl<IJySceneUserAuthMapp
|
|
@Autowired
|
|
@Autowired
|
|
private IScenePlusService scenePlusService;
|
|
private IScenePlusService scenePlusService;
|
|
|
|
|
|
- @Autowired
|
|
|
|
|
|
+ @Resource
|
|
private JmgaClient jmgaClient;
|
|
private JmgaClient jmgaClient;
|
|
|
|
|
|
|
|
|
|
@@ -167,6 +168,11 @@ public class JySceneUserAuthServiceImpl extends ServiceImpl<IJySceneUserAuthMapp
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public ResultData getSceneList(JmgaGetAuthParamVo param) {
|
|
public ResultData getSceneList(JmgaGetAuthParamVo param) {
|
|
- return jmgaClient.post(JmgaConstant.API_GET_USER_SCENE_AUTH, param);
|
|
|
|
|
|
+ return jmgaClient.post(JmgaConstant.API_GET_SCENE_LIST, param);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public ResultData getAuthSceneList(JmgaGetAuthParamVo param) {
|
|
|
|
+ return jmgaClient.post(JmgaConstant.API_GET_AUTH_SCENE_LIST, param);
|
|
}
|
|
}
|
|
}
|
|
}
|