[fix] String类型判断使用StringUtils.isNotEmpty() 而不是Objects.isNull()

This commit is contained in:
yinpeng
2023-05-31 20:51:31 +08:00
parent af9ff9dbae
commit 6986fdfca3
3 changed files with 3 additions and 3 deletions

View File

@@ -34,6 +34,6 @@ public class CursorPageBaseReq {
@JsonIgnore
public Boolean isFirstPage() {
return StringUtils.isNotEmpty(cursor);
return StringUtils.isEmpty(cursor);
}
}