feat: APP内容配置重构-附属需求:弹窗顺序 https://jira.shanqu.cc/browse/GHZS-4086

This commit is contained in:
chenjuntao
2024-01-22 17:31:54 +08:00
parent 20d1b86842
commit 7ec9bf08e2
24 changed files with 250 additions and 46 deletions

View File

@ -4,12 +4,12 @@ import com.google.gson.annotations.SerializedName
class LaunchRedirectWrapper(
@SerializedName("link")
val launchRedirect: LaunchRedirect
val launchRedirect: LaunchRedirect? = null,
)
class LaunchRedirect(
@SerializedName("multi_tab_nav_link")
val tabNavLink: LinkEntity,
@SerializedName("multi_tab_detail")
val tabDetail: LinkEntity
val navTabLink: LinkEntity? = null,
@SerializedName("multi_tab_link")
val topTabLink: LinkEntity? = null,
) : LinkEntity()