1
mirror of https://github.com/CarmJos/EasySQL.git synced 2024-09-19 21:35:47 +00:00

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

This commit is contained in:
Carm Jos 2021-12-14 20:33:24 +08:00
parent 139d213160
commit 2b86d9234a
3 changed files with 5 additions and 5 deletions

View File

@ -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);

View File

@ -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);

View File

@ -141,7 +141,7 @@
<encoding>UTF-8</encoding>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<locale>en_US</locale>
<locale>zh_CN</locale>
</configuration>
<executions>
<execution>