feat:增加首页动态切换Tab

This commit is contained in:
Max
2023-12-22 09:50:24 +08:00
parent f21e117e7f
commit a58165213d
2 changed files with 22 additions and 2 deletions

View File

@@ -228,6 +228,8 @@ public class InitInfo implements Serializable {
private List<H5Uri> h5Uris;
private int defaultTab;
//<editor-fold defaultstate="collapsed" desc="delombok">
@SuppressWarnings("all")
public InitInfo() {
@@ -907,6 +909,7 @@ public class InitInfo implements Serializable {
final Object this$trtcAppId = this.getTrtcAppId();
final Object other$trtcAppId = other.getTrtcAppId();
if (this$trtcAppId == null ? other$trtcAppId != null : !this$trtcAppId.equals(other$trtcAppId)) return false;
if (this.getDefaultTab() != other.getDefaultTab()) return false;
return true;
}
@@ -991,9 +994,18 @@ public class InitInfo implements Serializable {
result = result * PRIME + ($officialMsgUids == null ? 43 : $officialMsgUids.hashCode());
final Object $trtcAppId = this.getTrtcAppId();
result = result * PRIME + ($trtcAppId == null ? 43 : $trtcAppId.hashCode());
result = result * PRIME + this.getDefaultTab();
return result;
}
public int getDefaultTab() {
return defaultTab;
}
public void setDefaultTab(int defaultTab) {
this.defaultTab = defaultTab;
}
@Override
@SuppressWarnings("all")
public String toString() {