From 137046cc43a6dae3945f882fea1d255e52777597 Mon Sep 17 00:00:00 2001 From: wangshaoping Date: Sun, 4 Feb 2024 14:02:15 +0800 Subject: [PATCH] update --- .../java/io/sc/platform/orm/service/DaoService.java | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/io.sc.platform.orm/src/main/java/io/sc/platform/orm/service/DaoService.java b/io.sc.platform.orm/src/main/java/io/sc/platform/orm/service/DaoService.java index a3a3f9e3..32642803 100644 --- a/io.sc.platform.orm/src/main/java/io/sc/platform/orm/service/DaoService.java +++ b/io.sc.platform.orm/src/main/java/io/sc/platform/orm/service/DaoService.java @@ -17,6 +17,7 @@ public interface DaoService add(List entities) throws Exception; @@ -36,13 +37,6 @@ public interface DaoService list(Specification specification, QueryParameter queryParameter) throws Exception; public Page query(QueryParameter queryParameter) throws Exception; public Page query(Specification specification, QueryParameter queryParameter) throws Exception; - /* - public ExampleMatcher buildExampleMatcher(); - - public List listByExample(T queryEntity,QueryParameter queryParameter) throws Exception; - public List listByExample(T queryEntity,QueryParameter queryParameter,ExampleMatcher matcher) throws Exception; - - public Page pageByExample(T queryEntity,QueryParameter queryParameter) throws Exception; - public Page pageByExample(T queryEntity,QueryParameter queryParameter,ExampleMatcher matcher) throws Exception; - */ + public List getDefaultValues() throws Exception; + public void resetDefaultValues() throws Exception; }