diff --git a/helper/orm.go b/helper/orm.go index 83feb79..17a0524 100644 --- a/helper/orm.go +++ b/helper/orm.go @@ -2,7 +2,6 @@ package helper import ( "git.fsdpf.net/go/contracts" - "git.fsdpf.net/go/contracts/base" "git.fsdpf.net/go/db" ) @@ -22,12 +21,8 @@ type NewOrmConditionExpr func(rResource, rField, token string, operator contract type NewOrmConditionFuncExpr func(rResource, rField, token string, operator contracts.ConditionOperator, tType contracts.ConditionTokenType, ignoreEmptyParma bool, fn, fnParam string) contracts.ConditionExpr -type NewOrmConditionByRes func(items []base.ResCondition, describe string) contracts.Condition - type NewOrmQueryWithRecursive func(pField, cField string, root any, isWithoutCondition bool, depth int) contracts.QueryWithRecursive -type NewOrmQueryField func(rField base.ResField, t contracts.QueryDataType, alias string, options int) contracts.QueryField - type NewOrmOrderBy func(sql string, direction contracts.OrderByDirection) contracts.OrderBy type NewOrmGroupBy func(sql string) contracts.GroupBy