MyContributionResponse.java 1.93 KB
/*
 * @(#)EventDeleteResponse.java
 *
 * Copyright (c) 2014-2017  xiniunet 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.railway.response;

import com.xiniunet.framework.base.BaseResponse;
import com.xiniunet.railway.domain.*;

import java.util.List;

/**
 * 我的贡献的响应.
 * @author xiniunet
 */
public class MyContributionResponse extends BaseResponse {

    /**
     * 等级
     */
    private Long level;

    /**
     * 头衔
     */
    private String name;

    /**
     * 事件上报
     */
    private EventCount eventCount;

    /**
     * 安全护航
     */
    private SafetyEscortCount safetyEscortCount;

    /**
     *志愿服务
     */
    private VolunteerServiceCount volunteerServiceCount;

    public Long getLevel() {
        return level;
    }

    public void setLevel(Long level) {
        this.level = level;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public EventCount getEventCount() {
        return eventCount;
    }

    public void setEventCount(EventCount eventCount) {
        this.eventCount = eventCount;
    }

    public SafetyEscortCount getSafetyEscortCount() {
        return safetyEscortCount;
    }

    public void setSafetyEscortCount(SafetyEscortCount safetyEscortCount) {
        this.safetyEscortCount = safetyEscortCount;
    }

    public VolunteerServiceCount getVolunteerServiceCount() {
        return volunteerServiceCount;
    }

    public void setVolunteerServiceCount(VolunteerServiceCount volunteerServiceCount) {
        this.volunteerServiceCount = volunteerServiceCount;
    }
}