mirror of
https://github.com/zongzibinbin/MallChat.git
synced 2026-03-14 06:03:42 +08:00
[fix] String类型判断使用StringUtils.isNotEmpty() 而不是Objects.isNull()
This commit is contained in:
@@ -34,6 +34,6 @@ public class CursorPageBaseReq {
|
||||
|
||||
@JsonIgnore
|
||||
public Boolean isFirstPage() {
|
||||
return StringUtils.isNotEmpty(cursor);
|
||||
return StringUtils.isEmpty(cursor);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user