This commit is contained in:
Redkale
2018-05-05 11:43:32 +08:00
parent 1abdb3b874
commit d282321d98

View File

@@ -465,6 +465,26 @@ public final class EntityInfo<T> {
return table == null;
}
public boolean isAutoGenerated() {
return autoGenerated;
}
public boolean isAutouuid() {
return autouuid;
}
public Attribute<T, Serializable>[] getInsertAttributes() {
return insertAttributes;
}
public Attribute<T, Serializable>[] getUpdateAttributes() {
return updateAttributes;
}
public Attribute<T, Serializable>[] getQueryAttributes() {
return queryAttributes;
}
/**
* 获取Entity的QUERY SQL
*