9、Insert 类和InsertProvider 类
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Insert {
String[] value();
}
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface InsertProvider {
Class<?> type();
String method();
}
这两个类其实没有什么好说的。后面再补充。