From f537abe9f3646c739beaf15076246a2f71a347e9 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期四, 20 二月 2025 16:57:55 +0800 Subject: [PATCH] IOS广告增加区域屏蔽 --- src/main/java/com/yeshi/buwan/domain/entity/PlayUrl.java | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/yeshi/buwan/domain/entity/PlayUrl.java b/src/main/java/com/yeshi/buwan/domain/entity/PlayUrl.java index ab4c1a4..f551caf 100644 --- a/src/main/java/com/yeshi/buwan/domain/entity/PlayUrl.java +++ b/src/main/java/com/yeshi/buwan/domain/entity/PlayUrl.java @@ -2,9 +2,10 @@ import com.google.gson.annotations.Expose; import com.yeshi.buwan.domain.VideoResource; -import org.omg.CORBA.PRIVATE_MEMBER; -public class PlayUrl { +import java.io.Serializable; + +public class PlayUrl implements Serializable { @Expose private VideoResource resource; @Expose @@ -17,6 +18,16 @@ private String aid;//涓撹緫ID @Expose private String vid;//瑙嗛ID + @Expose + private String code;//椋庤涓撶敤 + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } public String getAid() { return aid; -- Gitblit v1.8.0