mapping.put("CREATED_TIME", new Timestamp(comment.getCreatedTime().getTime()));
mapping.put("FAVOURITE_COUNT", comment.getFavouriteCount());
return mapping;
}
},
new CommentWithUserMssqlGenerator(),
new TableDescription("COMMENTS", "COMMENTS c JOIN USERS u ON c.USER_NAME = u.USER_NAME", "ID")
);
}