Commit 4d57563d by Lee Daehyun

アーカイブディテール修正

parent afc531ed
......@@ -46,6 +46,10 @@ public class ArchiveDao extends AbstractDao {
if (column != -1) {
dto.roomId = cursor.getInt(column);
}
column = cursor.getColumnIndex("room_name");
if (column != -1) {
dto.roomName = cursor.getString(column);
}
column = cursor.getColumnIndex("save_user_id");
if (column != -1) {
dto.saveUserId = cursor.getInt(column);
......
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