From d282321d98c92b0e884ddf4718559584991f587d Mon Sep 17 00:00:00 2001 From: Redkale <22250530@qq.com> Date: Sat, 5 May 2018 11:43:32 +0800 Subject: [PATCH] --- src/org/redkale/source/EntityInfo.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/org/redkale/source/EntityInfo.java b/src/org/redkale/source/EntityInfo.java index d925b344c..b5e66f9ff 100644 --- a/src/org/redkale/source/EntityInfo.java +++ b/src/org/redkale/source/EntityInfo.java @@ -465,6 +465,26 @@ public final class EntityInfo { return table == null; } + public boolean isAutoGenerated() { + return autoGenerated; + } + + public boolean isAutouuid() { + return autouuid; + } + + public Attribute[] getInsertAttributes() { + return insertAttributes; + } + + public Attribute[] getUpdateAttributes() { + return updateAttributes; + } + + public Attribute[] getQueryAttributes() { + return queryAttributes; + } + /** * 获取Entity的QUERY SQL *