|
@@ -81,13 +81,13 @@ public class SysUserController extends BaseController
|
|
|
StringBuilder nickName= new StringBuilder();
|
|
|
for (Map<String, Object> user : list) {
|
|
|
if("芳烃抽提".equals(user.get("REGION"))||"汽油加氢".equals((user.get("REGION")))){
|
|
|
- userId.append(user.get("USER_ID").toString()).append(",");
|
|
|
- nickName.append(user.get("NICK_NAME").toString()).append(",");
|
|
|
+ userId.append(user.get("USERID").toString()).append(",");
|
|
|
+ nickName.append(user.get("NICKNAME").toString()).append(",");
|
|
|
}
|
|
|
}
|
|
|
if (StringUtils.isNotEmpty(userId.toString())&&StringUtils.isNotEmpty(nickName.toString())) {
|
|
|
- map.put("USER_ID", userId.substring(0, userId.length()-1));
|
|
|
- map.put("NICK_NAME", nickName.substring(0, nickName.length()-1));
|
|
|
+ map.put("USERID", userId.substring(0, userId.length()-1));
|
|
|
+ map.put("NICKNAME", nickName.substring(0, nickName.length()-1));
|
|
|
}
|
|
|
return list;
|
|
|
}
|