Commit 71c61196 by Kang Donghun

SQL文 nullcheck追加

parent 632e4814
......@@ -211,6 +211,10 @@ public class CommunicationLogic extends AbstractLogic {
}
public String getUserListByLoginId(String loginIdList) {
if (loginIdList == null) {
return null;
}
String[] userIdArray = loginIdList.split(",");
List<ShopMemberDto> shopMemberDtoList = shopMemberDao.getUserListByLoginId(userIdArray);
JSONArray joinedMemberArray = new JSONArray();
......
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