package com.andbase.demo.model; /** * Created by zhaoqipeng on 2016/7/1. */ public class FuncMenu { private int icon; private String title; private String intro; public int getIcon() { return icon; } public void setIcon(int icon) { this.icon = icon; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getIntro() { return intro; } public void setIntro(String intro) { this.intro = intro; } }