| 限定符和类型 | 可选元素和说明 |
|---|---|
String |
columnDefinition
(Optional) The SQL fragment that is used when generating the
DDL for the column.
|
boolean |
insertable
(Optional) Whether the column is included in the generated
SELECT statement for find and query operations.
|
int |
length
(Optional) The column length.
|
String |
name
(Optional) The name of the column.
|
boolean |
nullable
(Optional) Whether the column may be null.
|
int |
precision
(Optional) For numeric or date columns, specifies the precision
to which the value is stored.
|
int |
scale
(Optional) For floating-point or decimal columns, specifies
the number of digits after the decimal point.
|
String |
table
(Optional) The table in which the column is created in a
secondary table scenario.
|
boolean |
unique
(Optional) Whether the column is a unique key.
|
boolean |
updatable
(Optional) Whether the column is included in the generated
UPDATE statement for the entity.
|
public abstract String name
public abstract boolean insertable
public abstract boolean updatable
public abstract boolean unique
public abstract boolean nullable
public abstract int length
public abstract int precision
public abstract int scale
public abstract String columnDefinition
public abstract String table
Copyright © 2016–2025 AJAXJS. All rights reserved.