fix:修改包名
This commit is contained in:
parent
c98fcfb656
commit
bc55ad61b6
|
@ -2,31 +2,21 @@ package org.jeecg.modules.controller;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
import org.apache.shiro.SecurityUtils;
|
|
||||||
import org.jeecg.common.api.vo.Result;
|
import org.jeecg.common.api.vo.Result;
|
||||||
import org.jeecg.common.constant.CacheConstant;
|
|
||||||
import org.jeecg.common.constant.CommonConstant;
|
|
||||||
import org.jeecg.common.system.util.JwtUtil;
|
|
||||||
import org.jeecg.common.system.vo.LoginUser;
|
|
||||||
import org.jeecg.common.util.PasswordUtil;
|
|
||||||
import org.jeecg.common.util.oConvertUtils;
|
|
||||||
import org.jeecg.modules.base.entity.postgre.SysDepart;
|
|
||||||
import org.jeecg.modules.base.entity.postgre.SysUser;
|
|
||||||
import org.jeecg.modules.model.SysLoginModel;
|
import org.jeecg.modules.model.SysLoginModel;
|
||||||
import org.jeecg.modules.service.LoginService;
|
import org.jeecg.modules.feignclient.SystemClient;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("")
|
@RequestMapping("")
|
||||||
public class LoginController {
|
public class LoginController {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private LoginService loginService;
|
private SystemClient systemClient;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* app登录
|
* app登录
|
||||||
|
@ -36,7 +26,7 @@ public class LoginController {
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value = "/mLogin", method = RequestMethod.POST)
|
@RequestMapping(value = "/mLogin", method = RequestMethod.POST)
|
||||||
public Result<JSONObject> mLogin(@RequestBody SysLoginModel sysLoginModel) {
|
public Result<JSONObject> mLogin(@RequestBody SysLoginModel sysLoginModel) {
|
||||||
return loginService.mLogin(sysLoginModel);
|
return systemClient.mLogin(sysLoginModel);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -48,7 +38,7 @@ public class LoginController {
|
||||||
@RequestMapping(value = "/logout")
|
@RequestMapping(value = "/logout")
|
||||||
public Result<Object> logout(HttpServletRequest request, HttpServletResponse response) {
|
public Result<Object> logout(HttpServletRequest request, HttpServletResponse response) {
|
||||||
//用户退出逻辑
|
//用户退出逻辑
|
||||||
return loginService.logout(request, response);
|
return systemClient.logout(request, response);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -59,6 +49,6 @@ public class LoginController {
|
||||||
@ApiOperation("获取验证码")
|
@ApiOperation("获取验证码")
|
||||||
@GetMapping(value = "/randomImage/{key}")
|
@GetMapping(value = "/randomImage/{key}")
|
||||||
public Result<String> randomImage(HttpServletResponse response,@PathVariable("key") String key) {
|
public Result<String> randomImage(HttpServletResponse response,@PathVariable("key") String key) {
|
||||||
return loginService.randomImage(response, key);
|
return systemClient.randomImage(response, key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
package org.jeecg.modules.feignclient;
|
||||||
|
|
||||||
|
public interface AlarmService {
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
package org.jeecg.modules.feignclient;
|
||||||
|
|
||||||
|
public interface AnalysisService {
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
package org.jeecg.modules.feignclient;
|
||||||
|
|
||||||
|
public interface MessageService {
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
package org.jeecg.modules.feignclient;
|
||||||
|
|
||||||
|
public interface StationService {
|
||||||
|
}
|
|
@ -1,8 +1,7 @@
|
||||||
package org.jeecg.modules.service;
|
package org.jeecg.modules.feignclient;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import org.jeecg.common.api.vo.Result;
|
import org.jeecg.common.api.vo.Result;
|
||||||
import org.jeecg.modules.base.entity.postgre.SysEmail;
|
|
||||||
import org.jeecg.modules.model.SysLoginModel;
|
import org.jeecg.modules.model.SysLoginModel;
|
||||||
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
@ -15,7 +14,7 @@ import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
@FeignClient(value = "armd-system", path = "/sys")
|
@FeignClient(value = "armd-system", path = "/sys")
|
||||||
public interface LoginService {
|
public interface SystemClient {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 登录
|
* 登录
|
|
@ -0,0 +1,15 @@
|
||||||
|
package org.jeecg.modules.feignclient;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import org.jeecg.common.api.vo.Result;
|
||||||
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
|
||||||
|
@Component
|
||||||
|
@FeignClient(value = "armd-web-statistics", path = "/sys")
|
||||||
|
public interface WebService {
|
||||||
|
|
||||||
|
@GetMapping("/webStatistics/findStationList")
|
||||||
|
Result<JSONObject> findStationList();
|
||||||
|
}
|
|
@ -1,4 +0,0 @@
|
||||||
package org.jeecg.modules.service;
|
|
||||||
|
|
||||||
public interface AlarmService {
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
package org.jeecg.modules.service;
|
|
||||||
|
|
||||||
public interface AnalysisService {
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
package org.jeecg.modules.service;
|
|
||||||
|
|
||||||
public interface MessageService {
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
package org.jeecg.modules.service;
|
|
||||||
|
|
||||||
public interface StationService {
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
package org.jeecg.modules.service;
|
|
||||||
|
|
||||||
public interface WebService {
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user