aggiunta classi vecchio progetto
This commit is contained in:
14
NoahCrawler/src/it/noah/crawler/annotation/Column.java
Normal file
14
NoahCrawler/src/it/noah/crawler/annotation/Column.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package it.noah.crawler.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target(ElementType.FIELD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface Column {
|
||||
|
||||
public String name();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user