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; }