Unique注解定义:
DbUtils解析部分:
用法:
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface NotNull {
}
DbUtils解析部分:
if (ColumnUtils.isNotNull(column.getColumnField())) {
sqlBuffer.append(" NOT NULL");
}
用法:
@NotNull
private int age;