Commit 4134d992 by Your Name

更新部门下不能新增岗位员工

parent 66f0cecd
...@@ -696,7 +696,6 @@ public class LoginController { ...@@ -696,7 +696,6 @@ public class LoginController {
return ResultUtil.error("请输入验证码"); return ResultUtil.error("请输入验证码");
} }
String phone = entRegisterDto.getPhone(); String phone = entRegisterDto.getPhone();
String codeRedis = session.getAttribute(phone) != null ? session.getAttribute(phone).toString() : ""; String codeRedis = session.getAttribute(phone) != null ? session.getAttribute(phone).toString() : "";
if(authentication_code !=null && !("").equals(authentication_code)) { if(authentication_code !=null && !("").equals(authentication_code)) {
...@@ -878,7 +877,6 @@ public class LoginController { ...@@ -878,7 +877,6 @@ public class LoginController {
if (phone == null || "".equals(phone)) { if (phone == null || "".equals(phone)) {
return ResultUtil.error("手机号不能为空!"); return ResultUtil.error("手机号不能为空!");
} }
QyzxEmpLogin qyzxEmpLogin1 = new LambdaQueryChainWrapper<QyzxEmpLogin>(qyzxEmpLoginMapper) QyzxEmpLogin qyzxEmpLogin1 = new LambdaQueryChainWrapper<QyzxEmpLogin>(qyzxEmpLoginMapper)
.eq(QyzxEmpLogin::getPhone, phone).one(); .eq(QyzxEmpLogin::getPhone, phone).one();
if (qyzxEmpLogin1 != null) { if (qyzxEmpLogin1 != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment