From d98c8bd9d1d4f749bd59aa2d3e0905db28c394a6 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期三, 10 三月 2021 18:24:19 +0800 Subject: [PATCH] ArrayList实例化优化 --- 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