All Downloads are FREE. Search and download functionalities are using the official Maven repository.

biz.lobachev.annette.data_dictionary.builder.model.EntityField.scala Maven / Gradle / Ivy

package biz.lobachev.annette.data_dictionary.builder.model

case class EntityField(
  name: String,
  description: String = "",
  fieldName: String,
  dbFieldName: String,
  dataType: DataType,
  notNull: Boolean = true,
  autoIncrement: Boolean = false,
  labels: Labels = Map.empty,
) {
  def withLabels(seq: Label*) = copy(labels = labels ++ seq.map(a => a.key -> a.value))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy