跳过导航链接
A C D E G I L M N S T U V 

A

annotationType() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
Returns the annotation type of this annotation.

C

Column - com.tangzc.mpe.actable.annotation中的注释类型
建表的必备注解
ColumnComment - com.tangzc.mpe.actable.annotation中的注释类型
字段的备注
ColumnDefault - com.tangzc.mpe.actable.annotation中的注释类型
字段的默认值
ColumnImpl - com.tangzc.mpe.actable.annotation.impl中的类
 
ColumnImpl() - 类 的构造器com.tangzc.mpe.actable.annotation.impl.ColumnImpl
 
ColumnType - com.tangzc.mpe.actable.annotation中的注释类型
字段的类型
com.tangzc.mpe.actable.annotation - 程序包 com.tangzc.mpe.actable.annotation
 
com.tangzc.mpe.actable.annotation.constants - 程序包 com.tangzc.mpe.actable.annotation.constants
 
com.tangzc.mpe.actable.annotation.impl - 程序包 com.tangzc.mpe.actable.annotation.impl
 
comment() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
数据表字段备注 1.3.0版本支持,也可通过注解实现:com.tangzc.mpe.actable.annotation.Comment

D

DATE_DAY - 类 中的静态变量com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
日期格式,精确到日期
DATE_MONTH - 类 中的静态变量com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
日期格式,精确到月份
DATE_TIME_HOUR - 类 中的静态变量com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
日期时间格式,精确到小时
DATE_TIME_MIN - 类 中的静态变量com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
日期时间格式,精确到分
DATE_TIME_SEC - 类 中的静态变量com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
日期时间格式,精确到秒
DATE_YEAR - 类 中的静态变量com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
日期格式,精确到年
DateTimeFormatConstant - com.tangzc.mpe.actable.annotation.constants中的类
日期时间格式常量类
decimalLength() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
小数点长度,默认是0 类型默认长度参考:com.tangzc.mpe.actable.constants.MySqlTypeConstant
defaultValue() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
默认值,默认为null 1.3.0版本支持,也可通过注解实现:com.tangzc.mpe.actable.annotation.ColumnDefault

E

EnableTimeSuffix - com.tangzc.mpe.actable.annotation中的注释类型
表名时间后缀

G

getDecimalLengthDefault() - 枚举 中的方法com.tangzc.mpe.actable.annotation.constants.MySqlTypeConstant
 
getLengthCount() - 枚举 中的方法com.tangzc.mpe.actable.annotation.constants.MySqlTypeConstant
 
getLengthDefault() - 枚举 中的方法com.tangzc.mpe.actable.annotation.constants.MySqlTypeConstant
 
getPattern() - 类 中的方法com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
 

I

IgnoreTable - com.tangzc.mpe.actable.annotation中的注释类型
忽略建表的注解
IgnoreUpdate - com.tangzc.mpe.actable.annotation中的注释类型
作者:guoyzh 时间:2021/5/6 9:43 功能:忽略字段更新
Index - com.tangzc.mpe.actable.annotation中的注释类型
设置字段索引
isAutoIncrement() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
是否自动递增,默认false 也可通过注解实现:com.tangzc.mpe.actable.annotation.IsAutoIncrement
IsAutoIncrement - com.tangzc.mpe.actable.annotation中的注释类型
标志该字段需要设置自增 也可通过注解:com.tangzc.mpe.actable.annotation.Column的isAutoIncrement属性实现
isKey() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
是否是主键,默认false 也可通过注解实现:com.tangzc.mpe.actable.annotation.IsKey
IsKey - com.tangzc.mpe.actable.annotation中的注释类型
标志该字段为主键 也可通过注解:com.tangzc.mpe.actable.annotation.Column的isKey属性实现
IsNativeDefValue - com.tangzc.mpe.actable.annotation中的注释类型
开启默认值原生模式 原生模式介绍:默认是false表示非原生,此时value只支持字符串形式,会将value值以字符串的形式设置到字段的默认值,例如value="aa" 即sql为 DEFAULT "aa" 如果设置true,此时如果value="CURRENT_TIMESTAMP",即sql为 DEFAULT CURRENT_TIMESTAMP
IsNotNull - com.tangzc.mpe.actable.annotation中的注释类型
标志该字段不允许为空 也可通过注解:com.tangzc.mpe.actable.annotation.Column的isNull属性实现

L

length() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
字段长度,默认是255 类型默认长度参考:com.tangzc.mpe.actable.constants.MySqlTypeConstant

M

MySqlCharsetConstant - com.tangzc.mpe.actable.annotation.constants中的枚举
mysql支持的字符集
MySqlEngineConstant - com.tangzc.mpe.actable.annotation.constants中的枚举
mysql支持的引擎
MySqlTypeConstant - com.tangzc.mpe.actable.annotation.constants中的枚举
用于配置Mysql数据库中类型,并且该类型需要设置几个长度 这里配置多少个类型决定了,创建表能使用多少类型 例如:varchar(1) decimal(5,2) datetime

N

notNull() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
是否为可以为null,true是可以,false是不可以,默认为true 也可通过注解实现:com.tangzc.mpe.actable.annotation.IsNotNull

S

setPattern(String) - 类 中的方法com.tangzc.mpe.actable.annotation.constants.DateTimeFormatConstant
 

T

Table - com.tangzc.mpe.actable.annotation中的注释类型
创建表时的表名
TableCharset - com.tangzc.mpe.actable.annotation中的注释类型
表字符集
TableComment - com.tangzc.mpe.actable.annotation中的注释类型
表注释
TableEngine - com.tangzc.mpe.actable.annotation中的注释类型
表引擎
TablePrimary - com.tangzc.mpe.actable.annotation中的注释类型
表字符集
type() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
字段类型:不填默认使用属性的数据类型进行转换,转换失败的字段不会添加 仅支持com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant中的枚举数据类型 不填默认转换类:com.tangzc.mpe.actable.command.JavaToMysqlType 1.3.0版本支持,也可通过注解实现:com.tangzc.mpe.actable.annotation.ColumnType

U

Unique - com.tangzc.mpe.actable.annotation中的注释类型
设置字段唯一约束

V

value() - 类 中的方法com.tangzc.mpe.actable.annotation.impl.ColumnImpl
字段名
valueOf(String) - 枚举 中的静态方法com.tangzc.mpe.actable.annotation.constants.MySqlCharsetConstant
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法com.tangzc.mpe.actable.annotation.constants.MySqlEngineConstant
返回带有指定名称的该类型的枚举常量。
valueOf(String) - 枚举 中的静态方法com.tangzc.mpe.actable.annotation.constants.MySqlTypeConstant
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法com.tangzc.mpe.actable.annotation.constants.MySqlCharsetConstant
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法com.tangzc.mpe.actable.annotation.constants.MySqlEngineConstant
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
values() - 枚举 中的静态方法com.tangzc.mpe.actable.annotation.constants.MySqlTypeConstant
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
A C D E G I L M N S T U V 
跳过导航链接

Copyright © 2021. All rights reserved.