File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/main/java/org/apache/ibatis/annotations Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 44
44
* @Select({"<script>",
45
45
* "select * from users",
46
46
* "where name = #{name}",
47
- * "<if test="age != null"> age = #{age} </if>",
47
+ * "<if test=\ "age != null\ "> age = #{age} </if>",
48
48
* "</script>"})
49
49
* User select(@NotNull String name, @Nullable Intger age);
50
50
* }
69
69
70
70
/**
71
71
* @return A database id that correspond this statement
72
- *
73
72
* @since 3.5.5
74
73
*/
75
74
String databaseId () default "" ;
79
78
* e.g. RETURNING of PostgreSQL or OUTPUT of MS SQL Server.
80
79
*
81
80
* @return {@code true} if this select affects DB data; {@code false} if otherwise
82
- *
83
81
* @since 3.5.12
84
82
*/
85
83
boolean affectData () default false ;
88
86
* The container annotation for {@link Select}.
89
87
*
90
88
* @author Kazuki Shimizu
91
- *
92
89
* @since 3.5.5
93
90
*/
94
91
@ Documented
You can’t perform that action at this time.
0 commit comments