Annotation Type | Description |
---|---|
Column |
建表的必备注解
|
ColumnComment |
字段的备注
|
ColumnType |
字段的类型
|
DefaultValue |
字段的默认值
|
Index |
设置字段索引
|
IsAutoIncrement |
标志该字段需要设置自增
也可通过注解:com.gitee.sunchenbin.mybatis.actable.annotation.Column的isAutoIncrement属性实现
|
IsKey |
标志该字段为主键
也可通过注解:com.gitee.sunchenbin.mybatis.actable.annotation.Column的isKey属性实现
|
IsNotNull |
标志该字段不允许为空
也可通过注解:com.gitee.sunchenbin.mybatis.actable.annotation.Column的isNull属性实现
|
Table |
创建表时的表名
|
TableCharset |
表字符集
|
TableComment |
表注释
|
TableEngine |
表引擎
|
Unique |
设置字段唯一约束
|
Copyright © 2020. All rights reserved.