package com.vanco.abplayer.model; public class AreaItem { private int img; //图标 private String text; //文字 public int getImg() { return img; } public void setImg(int img) { this.img = img; } public String getText() { return text; } public void setText(String text) { this.text = text; } }