Rs Column
annotation class RsColumn(val name: String = "", val isId: Boolean = false, val converter: KClass<out RsValueConverter> = RsNoOpConverter::class)
Map a property to a column.
By default, property without mapping annotation is mapped to a column based on the property's name.
Properties
Link copied to clipboard
A converter class to convert value from ResultSet.getObject before assigning it into the property.