Skip to content

Commit a55e271

Browse files
committed
💡 增加部分注释
1 parent 33bae58 commit a55e271

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>org.nutz</groupId>
7373
<artifactId>nutz-spring-boot-starter</artifactId>
74-
<version>2.2.2.SNAPSHOT</version>
74+
<version>2.2.2.RELEASE</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>com.alibaba</groupId>

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
</parent>
1010
<groupId>org.nutz</groupId>
1111
<artifactId>nutz-spring-boot-starter</artifactId>
12-
<version>2.2.2-SNAPSHOT</version>
1312
<name>nutz-spring-boot-starter</name>
1413
<description>spring boot nutz starter </description>
1514
<url>https://nutzam.com</url>

src/main/java/org/nutz/spring/boot/service/BaseService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ public Pager<T> searchByKeyAndPage(String key, int page, String... fields) {
426426
*
427427
* @param obj
428428
* 待更新对象
429-
* @return
429+
* @return 影响的记录条数
430430
*/
431431
public int update(T obj) {
432432
return dao().update(obj);
@@ -450,7 +450,7 @@ public int updateFields(final T obj, String regex) {
450450
*
451451
* @param obj
452452
* 待更新对象
453-
* @return
453+
* @return 影响的记录条数
454454
*/
455455
public int updateIgnoreNull(final T obj) {
456456
return dao().updateIgnoreNull(obj);

0 commit comments

Comments
 (0)