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

tech.guyi.ipojo.module.h2.entry.FieldEntry Maven / Gradle / Ivy

The newest version!
package tech.guyi.ipojo.module.h2.entry;

import lombok.Data;
import tech.guyi.ipojo.module.h2.type.ColumnTypeConverter;

import java.lang.reflect.Field;

@Data
public class FieldEntry {

    private Field field;
    private String name;
    private Class type;
    private String columnType;
    private String columnName;
    private ColumnTypeConverter converter;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy