package com.gaiagps.iburn.database; import net.simonvt.schematic.annotation.DataType; import net.simonvt.schematic.annotation.DefaultValue; import static net.simonvt.schematic.annotation.DataType.Type.INTEGER; import static net.simonvt.schematic.annotation.DataType.Type.TEXT; /** * Event SQL Table definition. */ public interface EventTable extends PlayaItemTable { /** SQL type Modifiers Reference Name SQL Column Name */ @DataType(TEXT) String eventType = "type"; @DataType(INTEGER) @DefaultValue("0") String allDay = "all_day"; @DataType(INTEGER) @DefaultValue("0") String checkLocation = "check_loc"; @DataType(INTEGER) String campPlayaId = "c_id"; @DataType(TEXT) String startTime = "s_time"; @DataType(TEXT) String startTimePrint = "s_time_p"; @DataType(TEXT) String endTime = "e_time"; @DataType(TEXT) String endTimePrint = "e_time_p"; }