Commit 26ede701 by Lee Munkyeong

Bug fix

parent 11a97e36
...@@ -42,6 +42,10 @@ public class ShopMemberDao extends AbstractDao { ...@@ -42,6 +42,10 @@ public class ShopMemberDao extends AbstractDao {
if (column != -1) { if (column != -1) {
dto.favoriteRegisterDate = cursor.getString(column); dto.favoriteRegisterDate = cursor.getString(column);
} }
column = cursor.getColumnIndex("self_flg");
if (column != -1) {
dto.selfFlg = cursor.getInt(column);
}
return dto; return dto;
} }
......
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