
com.star.template.db.constant.ColumnEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.template.db.constant;
/**
* 列
*
*
* @author starhq
*/
public enum ColumnEnum {
COLUMNNAME("COLUMN_NAME", "列名"),
INDEX("INDEX_NAME", "索引"),
DATATYPE("DATA_TYPE", "数据类型"),
TYPENAME("TYPE_NAME", "类型名称"),
COLUMNDEF("COLUMN_DEF", "列默认值"),
REMARKS("REMARKS", "列注解"),
COLUMNSIZE("COLUMN_SIZE", "列长度"),
DECIMALDIGITS("DECIMAL_DIGITS", "精度"),
NULLABLE("NULLABLE", "为空"),
NONUNIQUE("NON_UNIQUE", "是否唯一");
public final String code;
public final String desc;
ColumnEnum(String code, String desc) {
this.code = code;
this.desc = desc;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy