@Retention(value=RUNTIME)
@Target(value=FIELD)
public @interface Column
| 限定符和类型 | 可选元素和说明 |
|---|---|
java.lang.String |
defaultValue
Set default value with String type for the column regardless of what column type is.
|
boolean |
ignore
Ignore to map this field into a column.
|
boolean |
index
Add index for the column.
|
boolean |
nullable
Set nullable constraint for the column.
|
boolean |
unique
Set unique constraint for the column.
|