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/HotVideoType.java | 83 +++++++++++++++++++++++------------------ 1 files changed, 47 insertions(+), 36 deletions(-) diff --git a/src/main/java/com/yeshi/buwan/domain/HotVideoType.java b/src/main/java/com/yeshi/buwan/domain/HotVideoType.java index 2500bca..84c4d58 100644 --- a/src/main/java/com/yeshi/buwan/domain/HotVideoType.java +++ b/src/main/java/com/yeshi/buwan/domain/HotVideoType.java @@ -1,53 +1,64 @@ package com.yeshi.buwan.domain; import com.google.gson.annotations.Expose; +import com.yeshi.buwan.domain.system.SystemInfo; public class HotVideoType { - public HotVideoType(String id) { - this.id = id; - } + public HotVideoType(String id) { + this.id = id; + } - @Expose - private String id; - @Expose - private VideoType type; - private int addType;// 0-绯荤粺 1-绠$悊鍛� - private String createtime; + @Expose + private String id; + @Expose + private VideoType type; + private int addType;// 0-绯荤粺 1-绠$悊鍛� + private String createtime; - public String getId() { - return id; - } + private SystemInfo system; - public HotVideoType() { - super(); - } + public SystemInfo getSystem() { + return system; + } - public void setId(String id) { - this.id = id; - } + public void setSystem(SystemInfo system) { + this.system = system; + } - public VideoType getType() { - return type; - } + public String getId() { + return id; + } - public void setType(VideoType type) { - this.type = type; - } + public HotVideoType() { + super(); + } - public int getAddType() { - return addType; - } + public void setId(String id) { + this.id = id; + } - public void setAddType(int addType) { - this.addType = addType; - } + public VideoType getType() { + return type; + } - public String getCreatetime() { - return createtime; - } + public void setType(VideoType type) { + this.type = type; + } - public void setCreatetime(String createtime) { - this.createtime = createtime; - } + public int getAddType() { + return addType; + } + + public void setAddType(int addType) { + this.addType = addType; + } + + public String getCreatetime() { + return createtime; + } + + public void setCreatetime(String createtime) { + this.createtime = createtime; + } } -- Gitblit v1.8.0