
com.github.risedragon.mysql.data.ColumnAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-mysqlclient Show documentation
Show all versions of spring-mysqlclient Show documentation
A very simple/efficient Mysql Client Framework
The newest version!
package com.github.risedragon.mysql.data;
import com.github.risedragon.mysql.SqlType;
public class ColumnAnnotation {
public String name; // Using field name as default;
public String comment;
public SqlType type;
public Integer length;
public Integer decimals;
public Boolean notNull;
public Boolean unique;
public Boolean autoIncrement; // require primaryKey > 0
public Boolean key;
public String defaultValue; // default value as string
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy