diff --git a/src/main/java/org/apache/ibatis/annotations/Select.java b/src/main/java/org/apache/ibatis/annotations/Select.java index e4488bc66a7..f6347adc987 100644 --- a/src/main/java/org/apache/ibatis/annotations/Select.java +++ b/src/main/java/org/apache/ibatis/annotations/Select.java @@ -1,5 +1,5 @@ /* - * Copyright 2009-2023 the original author or authors. + * Copyright 2009-2024 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. @@ -26,33 +26,33 @@ * The annotation that specify an SQL for retrieving record(s). *

* How to use: - *
+ *

*

* * @author Clinton Begin + * * @see How to use Dynamic SQL */ @Documented @@ -69,6 +69,7 @@ /** * @return A database id that correspond this statement + * * @since 3.5.5 */ String databaseId() default ""; @@ -78,6 +79,7 @@ * e.g. RETURNING of PostgreSQL or OUTPUT of MS SQL Server. * * @return {@code true} if this select affects DB data; {@code false} if otherwise + * * @since 3.5.12 */ boolean affectData() default false; @@ -86,6 +88,7 @@ * The container annotation for {@link Select}. * * @author Kazuki Shimizu + * * @since 3.5.5 */ @Documented