package com.moral.yunfushao.model; /** * 铃声 * Created by haijiang on 2017/7/12. */ public class VoiceBean { private String name; private String voiceName; private String res; private int id; private boolean set; private boolean play; private boolean defaultMusic = true; private String setMusic; 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 String getRes() { return res; } public void setRes(String res) { this.res = res; } public boolean isDefaultMusic() { return defaultMusic; } public void setDefaultMusic(boolean defaultMusic) { this.defaultMusic = defaultMusic; } public String getSetMusic() { return setMusic; } public void setSetMusic(String setMusic) { this.setMusic = setMusic; } public String getVoiceName() { return voiceName; } public void setVoiceName(String voiceName) { this.voiceName = voiceName; } }