Skip to content

Instantly share code, notes, and snippets.

@sizovs
Created August 27, 2014 06:45
Show Gist options
  • Save sizovs/92a50aacb641c22b8b90 to your computer and use it in GitHub Desktop.
Save sizovs/92a50aacb641c22b8b90 to your computer and use it in GitHub Desktop.
public class DailyQuestionTemplateRowReader extends OrmRowReader<DailyQuestionTemplate> {
public DailyQuestionTemplateRowReader() {
super(new ColumnMappingBuilder<>(DailyQuestionTemplate.class)
.map("id").reader(new DailyQuestionTemplateIdColumnReader())
.map("text", "question_text")
.map("sponsorText")
.map("displayOn")
.map("createdAt"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment