123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package com.edufound.reader.bean;
- import java.util.List;
- public class ActivityEventResultBean {
- private String code;
- private String count;
- private List<ActivityEventBean> data;
- private String message;
- private String success;
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getCount() {
- return count;
- }
- public void setCount(String count) {
- this.count = count;
- }
- public List<ActivityEventBean> getData() {
- return data;
- }
- public void setData(List<ActivityEventBean> data) {
- this.data = data;
- }
- public String getMessage() {
- return message;
- }
- public void setMessage(String message) {
- this.message = message;
- }
- public String getSuccess() {
- return success;
- }
- public void setSuccess(String success) {
- this.success = success;
- }
- public class ActivityEventBean {
- private String amount;
- private String endTime;
- private String redFlower;
- private String redFlowerTotal;
- private String startTime;
- private String voucherAmount;
- public String getAmount() {
- return amount;
- }
- public void setAmount(String amount) {
- this.amount = amount;
- }
- public String getEndTime() {
- return endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- public String getRedFlower() {
- return redFlower;
- }
- public void setRedFlower(String redFlower) {
- this.redFlower = redFlower;
- }
- public String getRedFlowerTotal() {
- return redFlowerTotal;
- }
- public void setRedFlowerTotal(String redFlowerTotal) {
- this.redFlowerTotal = redFlowerTotal;
- }
- public String getStartTime() {
- return startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- public String getVoucherAmount() {
- return voucherAmount;
- }
- public void setVoucherAmount(String voucherAmount) {
- this.voucherAmount = voucherAmount;
- }
- }
- }
|