|
@@ -16,7 +16,6 @@ import cn.com.qmth.examcloud.core.basic.dao.ThirdPartyAccessRepo;
|
|
import cn.com.qmth.examcloud.core.basic.dao.entity.ThirdPartyAccessEntity;
|
|
import cn.com.qmth.examcloud.core.basic.dao.entity.ThirdPartyAccessEntity;
|
|
import cn.com.qmth.examcloud.core.basic.dao.entity.ThirdPartyAccessPK;
|
|
import cn.com.qmth.examcloud.core.basic.dao.entity.ThirdPartyAccessPK;
|
|
import cn.com.qmth.examcloud.web.helpers.GlobalHelper;
|
|
import cn.com.qmth.examcloud.web.helpers.GlobalHelper;
|
|
-import cn.com.qmth.examcloud.web.support.ControllerSupport;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -29,7 +28,7 @@ import io.swagger.annotations.ApiOperation;
|
|
@Transactional
|
|
@Transactional
|
|
@RestController
|
|
@RestController
|
|
@RequestMapping("${$rmp.cloud.basic}" + "common")
|
|
@RequestMapping("${$rmp.cloud.basic}" + "common")
|
|
-public class CommonCloudServiceProvider extends ControllerSupport implements CommonCloudService {
|
|
|
|
|
|
+public class CommonCloudServiceProvider implements CommonCloudService {
|
|
|
|
|
|
private static final long serialVersionUID = 8860099250569635574L;
|
|
private static final long serialVersionUID = 8860099250569635574L;
|
|
|
|
|
|
@@ -54,7 +53,7 @@ public class CommonCloudServiceProvider extends ControllerSupport implements Com
|
|
|
|
|
|
ThirdPartyAccessBean bean = new ThirdPartyAccessBean();
|
|
ThirdPartyAccessBean bean = new ThirdPartyAccessBean();
|
|
bean.setAppId(entity.getAppId());
|
|
bean.setAppId(entity.getAppId());
|
|
- bean.setRootOrgId(bean.getRootOrgId());
|
|
|
|
|
|
+ bean.setRootOrgId(entity.getRootOrgId());
|
|
bean.setSecretKey(entity.getSecretKey());
|
|
bean.setSecretKey(entity.getSecretKey());
|
|
bean.setTimeRange(entity.getTimeRange());
|
|
bean.setTimeRange(entity.getTimeRange());
|
|
|
|
|