mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
21 lines
400 B
Java
21 lines
400 B
Java
package com.mysema.query.sql;
|
|
|
|
import static java.lang.annotation.ElementType.*;
|
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Documented
|
|
@Target({FIELD,METHOD})
|
|
@Retention(RUNTIME)
|
|
public @interface Column {
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
String value();
|
|
|
|
}
|