package com.moral.yunfushao.model; /** * 铃声 * Created by haijiang on 2017/7/12. */ public class VoiceBean { private String name; private int res; private int id; private boolean set; private boolean play; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getId() { return id; } public void setId(int id) { this.id = id; } public boolean isSet() { return set; } public void setSet(boolean set) { this.set = set; } public boolean isPlay() { return play; } public void setPlay(boolean play) { this.play = play; } public int getRes() { return res; } public void setRes(int res) { this.res = res; } }