Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
easybest committed Dec 23, 2023
1 parent 66a9c15 commit 8b34bd3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2019-2022 the original author or authors.
* Copyright 2019-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -39,7 +39,7 @@ public interface PersistenceCompatibility {
/**
* The specification of generation strategies for the values of primary keys.
* @param property property
* @return GenerationType and generator
* @return generationType and generator
*/
Optional<String[]> getAnnotatedGenerationType(PersistentProperty<?> property);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ public class MybatisContext<T, ID> implements Serializable {
*/
public static final String PARAM_TENANT_ID = "tenantId";

/**
* ID.
*/
public static final String PARAM_ID = "id";

private @Nullable ID id;

private @Nullable T instance;
Expand Down

0 comments on commit 8b34bd3

Please sign in to comment.