package com.geo.smallcredit.vo; public class HomeBean { private String title; private String desc; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } public HomeBean() { super(); // TODO Auto-generated constructor stub } public HomeBean(String title, String desc) { super(); this.title = title; this.desc = desc; } }