AnnouncementUserGetResponse.java 1012 Bytes
/*
 * @(#)AnnouncementUserGetResponse.java
 *
 * Copyright (c) 2014-2017   版权所有
 * 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.announcement.response;

import com.xiniunet.announcement.domain.AnnouncementUser;
import com.xiniunet.framework.base.BaseResponse;

/**
 * 通过id查询被通知用户的响应.
 * @author 
 */
public class AnnouncementUserGetResponse extends BaseResponse {

    /**
     * 被通知用户信息
     */
    private AnnouncementUser announcementUser;

    public AnnouncementUser getAnnouncementUser() {
        return announcementUser;
    }

    public void setAnnouncementUser(AnnouncementUser announcementUser) {
        this.announcementUser = announcementUser;
    }
}