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;
        }
    }

}