Commit 52b4fa03 authored by libin's avatar libin

用户身份信息

parent a72c879d
......@@ -148,17 +148,17 @@ public class AppUserPositionTempBiz extends BaseBiz<AppUserPositionTempMapper, A
AppUserPositionTemp appUserPositionTemp;
for (int i = 0; i < userPostionData.size(); i++) {
String[] data = userPostionData.get(i);
String name = data[0];
String phone = data[1];
if (StringUtils.isEmpty(phone)){
throw new BaseException("手机号为空");
}
String postionName = data[2];
if (StringUtils.isEmpty(postionName)){
throw new BaseException("身份为空");
}
Integer postionId = null;
try {
String name = data[0];
String phone = data[1];
if (StringUtils.isEmpty(phone)){
throw new BaseException("手机号为空");
}
String postionName = data[2];
if (StringUtils.isEmpty(postionName)){
throw new BaseException("身份为空");
}
//根据手机号查询userId
AppUserLogin userLogin = loginBiz.checkeUserLogin(phone);
for (Map.Entry<Integer, String> integerStringEntry : entrySet) {
......
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