package com.geo.smallcredit.vo; public class Travel { private String title; private int img; private String name; private String info; private int front; private int show; public Travel(String title, int img, String name, String info, int front, int show) { super(); this.title = title; this.img = img; this.name = name; this.info = info; this.front = front; this.show = show; } public Travel() { super(); } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getImg() { return img; } public void setImg(int img) { this.img = img; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getInfo() { return info; } public void setInfo(String info) { this.info = info; } public int getFront() { return front; } public void setFront(int front) { this.front = front; } public int getShow() { return show; } public void setShow(int show) { this.show = show; } }