admin
2021-01-08 7e389247b3b2877c12f1eaae6e33c9c33e91d2dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
package com.ks.daylucky.pojo.VO.admin;
 
import java.math.BigDecimal;
import java.util.List;
 
public class ActivityAdminVo {
 
    private Long id;
    private ActivityBean activity;
    private JoinInfoBean joinInfo;
    private OpenInfoBean openInfo;
    private List<AwardInfoBean> awardInfo;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public ActivityBean getActivity() {
        return activity;
    }
 
    public void setActivity(ActivityBean activity) {
        this.activity = activity;
    }
 
    public JoinInfoBean getJoinInfo() {
        return joinInfo;
    }
 
    public void setJoinInfo(JoinInfoBean joinInfo) {
        this.joinInfo = joinInfo;
    }
 
    public OpenInfoBean getOpenInfo() {
        return openInfo;
    }
 
    public void setOpenInfo(OpenInfoBean openInfo) {
        this.openInfo = openInfo;
    }
 
    public List<AwardInfoBean> getAwardInfo() {
        return awardInfo;
    }
 
    public void setAwardInfo(List<AwardInfoBean> awardInfo) {
        this.awardInfo = awardInfo;
    }
 
    public static class ActivityBean {
        /**
         * poster : https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/poster/4dad5e05-9fa8-4f47-8b40-f5b5255ee4fc.png
         */
 
        private String poster;
        private List<BannerBean> bannerList;
 
 
        public List<BannerBean> getBannerList() {
            return bannerList;
        }
 
        public void setBannerList(List<BannerBean> bannerList) {
            this.bannerList = bannerList;
        }
 
        public String getPoster() {
            return poster;
        }
 
        public void setPoster(String poster) {
            this.poster = poster;
        }
 
 
        public static class BannerBean {
            private String id;
            private String url;
 
            public String getUrl() {
                return url;
            }
 
            public void setUrl(String url) {
                this.url = url;
            }
 
            public String getId() {
                return id;
            }
 
            public void setId(String id) {
                this.id = id;
            }
        }
    }
 
    public static class JoinInfoBean {
        /**
         * adInfo : {"data":{"icon":"https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/sponsorad/79e3c033-ac7c-4b7d-9aa2-5dbce85ee6ea.png","name":"2133322222","sceneId":"213213321","desc":""},"type":"alipayLife"}
         * must : 0
         * desc : 参与条件说明
         */
 
        private AdInfoBean adInfo;
        private Integer must;
        private String desc;
 
        public AdInfoBean getAdInfo() {
            return adInfo;
        }
 
        public void setAdInfo(AdInfoBean adInfo) {
            this.adInfo = adInfo;
        }
 
        public Integer getMust() {
            return must;
        }
 
        public void setMust(Integer must) {
            this.must = must;
        }
 
        public String getDesc() {
            return desc;
        }
 
        public void setDesc(String desc) {
            this.desc = desc;
        }
 
        public static class AdInfoBean {
            /**
             * data : {"icon":"https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/sponsorad/79e3c033-ac7c-4b7d-9aa2-5dbce85ee6ea.png","name":"2133322222","sceneId":"213213321","desc":""}
             * type : alipayLife
             */
 
            private DataBean data;
            private String type;
 
            public DataBean getData() {
                return data;
            }
 
            public void setData(DataBean data) {
                this.data = data;
            }
 
            public String getType() {
                return type;
            }
 
            public void setType(String type) {
                this.type = type;
            }
 
            public static class DataBean {
                /**
                 * icon : https://daylucky-1255749512.cos.ap-nanjing.myqcloud.com/image/activity/sponsorad/79e3c033-ac7c-4b7d-9aa2-5dbce85ee6ea.png
                 * name : 2133322222
                 * sceneId : 213213321
                 * desc :
                 */
 
                private String icon;
                private String name;
                private String sceneId;
                private String desc;
 
                public String getIcon() {
                    return icon;
                }
 
                public void setIcon(String icon) {
                    this.icon = icon;
                }
 
                public String getName() {
                    return name;
                }
 
                public void setName(String name) {
                    this.name = name;
                }
 
                public String getSceneId() {
                    return sceneId;
                }
 
                public void setSceneId(String sceneId) {
                    this.sceneId = sceneId;
                }
 
                public String getDesc() {
                    return desc;
                }
 
                public void setDesc(String desc) {
                    this.desc = desc;
                }
            }
        }
    }
 
    public static class OpenInfoBean {
        /**
         * minPersonCount : 1000
         * day : 2
         */
 
        private Integer minPersonCount;
        private Integer day;
 
        public Integer getMinPersonCount() {
            return minPersonCount;
        }
 
        public void setMinPersonCount(Integer minPersonCount) {
            this.minPersonCount = minPersonCount;
        }
 
        public Integer getDay() {
            return day;
        }
 
        public void setDay(Integer day) {
            this.day = day;
        }
    }
 
    public static class AwardInfoBean {
        /**
         * title : 奖项一
         * data : {"total":"100","count":"1000","type":2}
         * selected : true
         */
 
        private String title;
        private DataBeanX data;
        private String type;
        private boolean selected;
 
 
        public String getType() {
            return type;
        }
 
        public void setType(String type) {
            this.type = type;
        }
 
        public String getTitle() {
            return title;
        }
 
        public void setTitle(String title) {
            this.title = title;
        }
 
        public DataBeanX getData() {
            return data;
        }
 
        public void setData(DataBeanX data) {
            this.data = data;
        }
 
        public boolean isSelected() {
            return selected;
        }
 
        public void setSelected(boolean selected) {
            this.selected = selected;
        }
 
        public static class DataBeanX {
            /**
             * total : 100
             * count : 1000
             * type : 2
             */
 
            private BigDecimal total;
            private Integer count;
            private int type;
 
            public BigDecimal getTotal() {
                return total;
            }
 
            public void setTotal(BigDecimal total) {
                this.total = total;
            }
 
            public Integer getCount() {
                return count;
            }
 
            public void setCount(Integer count) {
                this.count = count;
            }
 
            public int getType() {
                return type;
            }
 
            public void setType(int type) {
                this.type = type;
            }
        }
    }
}