Skip to content

Commit

Permalink
Merge pull request opensolon#309 from kiryu1223/dev
Browse files Browse the repository at this point in the history
改包路径
  • Loading branch information
noear authored Nov 10, 2024
2 parents d931d49 + 589dc76 commit 98fe55a
Show file tree
Hide file tree
Showing 18 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

/**
* 默认值生成策略
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import org.noear.solon.data.sqlink.base.generate.DynamicGenerator;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import org.noear.solon.data.sqlink.base.metaData.IMappingTable;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import org.noear.solon.data.sqlink.base.intercept.Interceptor;
import org.noear.solon.data.sqlink.base.intercept.NoInterceptor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import org.noear.solon.data.sqlink.base.intercept.Interceptor;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

/**
* 关联关系注解
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.noear.solon.data.sqlink.base.annotation;
package org.noear.solon.data.sqlink.annotation;

import org.noear.solon.data.sqlink.base.toBean.handler.ITypeHandler;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
import org.noear.solon.data.sqlink.api.crud.CRUD;
import org.noear.solon.data.sqlink.base.SqLinkConfig;
import org.noear.solon.data.sqlink.base.SqLinkDialect;
import org.noear.solon.data.sqlink.base.annotation.GenerateStrategy;
import org.noear.solon.data.sqlink.base.annotation.InsertDefaultValue;
import org.noear.solon.data.sqlink.annotation.GenerateStrategy;
import org.noear.solon.data.sqlink.annotation.InsertDefaultValue;
import org.noear.solon.data.sqlink.base.generate.DynamicGenerator;
import org.noear.solon.data.sqlink.base.metaData.FieldMetaData;
import org.noear.solon.data.sqlink.base.metaData.MetaData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package org.noear.solon.data.sqlink.api.crud.read;


import org.noear.solon.data.sqlink.base.annotation.EmptyTable;
import org.noear.solon.data.sqlink.annotation.EmptyTable;

/**
* @author kiryu1223
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import io.github.kiryu1223.expressionTree.expressions.LambdaExpression;
import org.noear.solon.data.sqlink.api.crud.CRUD;
import org.noear.solon.data.sqlink.base.SqLinkConfig;
import org.noear.solon.data.sqlink.base.annotation.RelationType;
import org.noear.solon.data.sqlink.annotation.RelationType;
import org.noear.solon.data.sqlink.base.expression.*;
import org.noear.solon.data.sqlink.base.metaData.FieldMetaData;
import org.noear.solon.data.sqlink.base.metaData.IMappingTable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package org.noear.solon.data.sqlink.base.metaData;

import org.noear.solon.data.sqlink.base.annotation.InsertDefaultValue;
import org.noear.solon.data.sqlink.annotation.InsertDefaultValue;
import org.noear.solon.data.sqlink.base.intercept.Interceptor;
import org.noear.solon.data.sqlink.base.toBean.handler.ITypeHandler;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package org.noear.solon.data.sqlink.base.metaData;

import org.noear.solon.data.sqlink.base.annotation.*;
import org.noear.solon.data.sqlink.annotation.*;
import org.noear.solon.data.sqlink.base.intercept.DoNothingInterceptor;
import org.noear.solon.data.sqlink.base.intercept.Interceptor;
import org.noear.solon.data.sqlink.base.intercept.NoInterceptor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
*/
package org.noear.solon.data.sqlink.base.metaData;

import org.noear.solon.data.sqlink.base.annotation.Navigate;
import org.noear.solon.data.sqlink.base.annotation.RelationType;
import org.noear.solon.data.sqlink.annotation.Navigate;
import org.noear.solon.data.sqlink.annotation.RelationType;

import java.util.Collection;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import demo.sqlink.interceptor.Base64Decryption;
import demo.sqlink.interceptor.Base64Encryption;
import org.noear.solon.data.sqlink.base.annotation.*;
import org.noear.solon.data.sqlink.annotation.*;

import java.time.LocalDateTime;

Expand Down

0 comments on commit 98fe55a

Please sign in to comment.