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/RecommendAd.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/yeshi/buwan/domain/RecommendAd.java b/src/main/java/com/yeshi/buwan/domain/RecommendAd.java index 4b6e698..4caa037 100644 --- a/src/main/java/com/yeshi/buwan/domain/RecommendAd.java +++ b/src/main/java/com/yeshi/buwan/domain/RecommendAd.java @@ -1,6 +1,7 @@ package com.yeshi.buwan.domain; import com.google.gson.annotations.Expose; +import com.yeshi.buwan.domain.system.SystemInfo; public class RecommendAd { private String id; @@ -24,6 +25,16 @@ private int linktype; private int platform; + private SystemInfo system; + + public SystemInfo getSystem() { + return system; + } + + public void setSystem(SystemInfo system) { + this.system = system; + } + public int getLinktype() { return linktype; } -- Gitblit v1.8.0