|
|
@ -1,17 +1,34 @@
|
|
|
|
package com.glxp.api.admin.controller.auth;
|
|
|
|
package com.glxp.api.admin.controller.auth;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.glxp.api.admin.entity.auth.AuthConnectEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.admin.entity.info.CompanyEntity;
|
|
|
|
import com.glxp.api.admin.req.auth.ConnectRequest;
|
|
|
|
import com.glxp.api.admin.req.auth.ConnectRequest;
|
|
|
|
|
|
|
|
import com.glxp.api.admin.service.info.CompanyService;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@RestController
|
|
|
|
public class ConnectTestController {
|
|
|
|
public class ConnectTestController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
CompanyService companyService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/udiwms/auth/device/connect")
|
|
|
|
@GetMapping("/udiwms/auth/device/connect")
|
|
|
|
public BaseResponse index(ConnectRequest connequest) {
|
|
|
|
public BaseResponse index(ConnectRequest connequest) {
|
|
|
|
return ResultVOUtils.success("连接UDI管理系统成功!");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CompanyEntity companyEntity = companyService.findCompany();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AuthConnectEntity authConnectEntity = new AuthConnectEntity();
|
|
|
|
|
|
|
|
authConnectEntity.setCompanyName(companyEntity.getName());
|
|
|
|
|
|
|
|
authConnectEntity.setSysName("UDI管理系统");
|
|
|
|
|
|
|
|
return ResultVOUtils.success(companyEntity.getName());
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|