增加本平台配置查询接口,方便上级级联参数填写
parent
87ce22e031
commit
8a82a71ded
|
@ -1,5 +1,6 @@
|
||||||
package com.genersoft.iot.vmp.vmanager.platform;
|
package com.genersoft.iot.vmp.vmanager.platform;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.PageResult;
|
import com.genersoft.iot.vmp.common.PageResult;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
|
@ -15,6 +16,8 @@ import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
|
|
||||||
|
|
||||||
@CrossOrigin
|
@CrossOrigin
|
||||||
@RestController
|
@RestController
|
||||||
|
@ -29,6 +32,19 @@ public class PlatformController {
|
||||||
@Autowired
|
@Autowired
|
||||||
private ISIPCommanderForPlatform commanderForPlatform;
|
private ISIPCommanderForPlatform commanderForPlatform;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private SipConfig sipConfig;
|
||||||
|
|
||||||
|
@GetMapping("/platforms/serverconfig")
|
||||||
|
public ResponseEntity<JSONObject> serverConfig() {
|
||||||
|
JSONObject result = new JSONObject();
|
||||||
|
result.put("deviceIp", sipConfig.getSipIp());
|
||||||
|
result.put("devicePort", sipConfig.getSipPort());
|
||||||
|
result.put("username", sipConfig.getSipId());
|
||||||
|
result.put("password", sipConfig.getSipPassword());
|
||||||
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
||||||
|
}
|
||||||
|
|
||||||
@GetMapping("/platforms/{count}/{page}")
|
@GetMapping("/platforms/{count}/{page}")
|
||||||
public PageResult<ParentPlatform> platforms(@PathVariable int page, @PathVariable int count){
|
public PageResult<ParentPlatform> platforms(@PathVariable int page, @PathVariable int count){
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue