package com.yang.demo.entity;
/**
* Created by yangyang on 2017/2/17.
*/
public class MainEntity {
private String title;
private String desc;
private int type;
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 int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}