getAnnotation的一个坑
// TableField annotation = f.getAnnotation(TableField.class); // 不建议使用这个,建议使用下面这个方法获取 TableField annotation = AnnotationUtils.getAnnotation(f, TableField.class);
// TableField annotation = f.getAnnotation(TableField.class); // 不建议使用这个,建议使用下面这个方法获取 TableField annotation = AnnotationUtils.getAnnotation(f, TableField.class);