WindChat/windchat-message/src/main/java/com/windchat/im/message/bean/WebBean.java

47 lines
752 B
Java
Executable File

package com.windchat.im.message.bean;
import com.windchat.common.utils.GsonUtils;
public class WebBean {
private String webCode;
private int width;
private int height;
private String hrefUrl;// 点击跳转链接
public String getWebCode() {
return webCode;
}
public void setWebCode(String webCode) {
this.webCode = webCode;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public String getHrefUrl() {
return hrefUrl;
}
public void setHrefUrl(String hrefUrl) {
this.hrefUrl = hrefUrl;
}
public String toString() {
return GsonUtils.toJson(this);
}
}