1
mirror of https://github.com/CarmJos/EasySQL.git synced 2026-06-04 15:28:20 +08:00

[v0.2.1-fix] 修改javadoc为中文版本

This commit is contained in:
2021-12-14 20:33:24 +08:00
parent 139d213160
commit 2b86d9234a
3 changed files with 5 additions and 5 deletions
@@ -26,8 +26,8 @@ public interface PreparedSQLUpdateBatchAction extends SQLAction<List<Integer>> {
* 设定自增主键的序列
*
* @param keyColumnIndex 自增主键的序列
* 若该值 0,则 {@link #execute()} 返回自增主键数值
* 若该值 ≤ 0,则 {@link #execute()} 返回变更的行数
* <br>若该值 0,则 {@link #execute()} 返回自增主键数值
* <br>若该值 ≤ 0,则 {@link #execute()} 返回变更的行数
* @return {@link PreparedSQLUpdateBatchAction}
*/
PreparedSQLUpdateBatchAction setKeyIndex(int keyColumnIndex);
@@ -8,8 +8,8 @@ public interface SQLUpdateAction extends SQLAction<Integer> {
* 设定自增主键的序列
*
* @param keyColumnIndex 自增主键的序列
* 若该值 0,则 {@link #execute()} 返回自增主键数值
* 若该值 ≤ 0,则 {@link #execute()} 返回变更的行数
* <br>若该值 0,则 {@link #execute()} 返回自增主键数值
* <br>若该值 ≤ 0,则 {@link #execute()} 返回变更的行数
* @return {@link SQLUpdateAction}
*/
SQLUpdateAction setKeyIndex(int keyColumnIndex);