package com.jiuqi.mobile.nigo.comeclose.bean.portalDefined; import com.jiuqi.mobile.nigo.comeclose.bean.NiGoBean; /** * * @类描述: 页面底部定义<br/> * @项目名称:comeclose <br/> * @版权所有(c):JOIN-CHEER <br/> * @作者:xuzhe <br/> * @创建时间:2015-4-23下午3:09:41 <br/> * @修改时间:<br/> * @修改备注: <br/> */ public class BottomDefinedBean extends NiGoBean { private static final long serialVersionUID = -7624593488844286927L; private String bottomBackground;// 背景图片 private String copyright;// 版权 private String others;// 其他 private String projectGuid;// 项目guid public String getBottomBackground() { return bottomBackground; } public void setBottomBackground(String bottomBackground) { this.bottomBackground = bottomBackground; } public String getCopyright() { return copyright; } public void setCopyright(String copyright) { this.copyright = copyright; } public String getOthers() { return others; } public void setOthers(String others) { this.others = others; } public String getProjectGuid() { return projectGuid; } public void setProjectGuid(String projectGuid) { this.projectGuid = projectGuid; } }