|
|
|
@ -18,6 +18,7 @@ import com.glxp.api.req.auth.PCLoginRequest;
|
|
|
|
|
import com.glxp.api.req.auth.UpdatePasswordRequest;
|
|
|
|
|
import com.glxp.api.res.auth.LoginResponse;
|
|
|
|
|
import com.glxp.api.res.auth.LoginUserInfoResponse;
|
|
|
|
|
import com.glxp.api.res.auth.WebTitleResponse;
|
|
|
|
|
import com.glxp.api.service.system.CompanyService;
|
|
|
|
|
import com.glxp.api.service.monitor.LogininforService;
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
@ -29,6 +30,7 @@ import com.glxp.api.vo.inv.InvWarehouseTreeVo;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
@ -312,6 +314,7 @@ public class LoginController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private InvWarehouseDao invWarehouseDao;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 平台验证
|
|
|
|
|
*
|
|
|
|
@ -358,4 +361,15 @@ public class LoginController extends BaseController {
|
|
|
|
|
return ResultVOUtils.success(res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Value("${WEB_TITLE}")
|
|
|
|
|
private String WEB_TITLE;
|
|
|
|
|
|
|
|
|
|
@GetMapping("/spms/getTitleConfig")
|
|
|
|
|
public BaseResponse getTitleConfig() {
|
|
|
|
|
WebTitleResponse webTitleResponse = new WebTitleResponse();
|
|
|
|
|
webTitleResponse.setTitle(WEB_TITLE);
|
|
|
|
|
return ResultVOUtils.success(webTitleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|