/** * Copyright (C) 2013-2014 EaseMob Technologies. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hx.hxchat.domain; import java.io.Serializable; import com.easemob.chat.EMContact; /** * * 环信自定义消息 * 类描述 * @author huyan * */ public class GoodShareInfo implements Serializable{ /** * */ private static final long serialVersionUID = 8626686641848559218L; /**分享消息的id */ private int id; /** 分享消息标题 */ private String title; /** 分享消息标题的图片路径 */ private String avatarurl; /**分享消的内容简介*/ private String content; /**分享消息的pid(产品)*/ private String pid; /**分享消息的sid(商铺)*/ private String sid; /**分享消息的的链接*/ private String url; /**是不是用本Activiy打开*/ private String isAppOpen; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAvatarurl() { return avatarurl; } public void setAvatarurl(String avatarurl) { this.avatarurl = avatarurl; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getPid() { return pid; } public void setPid(String pid) { this.pid = pid; } public String getSid() { return sid; } public void setSid(String sid) { this.sid = sid; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } @Override public String toString() { return "GoodShareInfo [id=" + id + ", title=" + title + ", avatarurl=" + avatarurl + ", content=" + content + ", pid=" + pid + ", sid=" + sid + ", url=" + url + "]"; } }