package com.jiuqi.mobile.nigo.comeclose.bean.portalDefined; /** * * @类描述: 图片类<br/> * @项目名称:comeclose <br/> * @版权所有(c):JOIN-CHEER <br/> * @作者:xuzhe <br/> * @创建时间:2015-4-24下午2:07:49 <br/> * @修改时间:<br/> * @修改备注: <br/> */ public class ImageBean extends SectionBean { private static final long serialVersionUID = -8414826539188348016L; // @DBColumn(comment = "Image宽度") private int width; // @DBColumn(comment = "Image高度") private int height; // @DBColumn(comment = "Image上的超链接") private String url; // @DBColumn(comment = "Image的引用路径") private String path; 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 getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } }