沈斌
2018-05-16 6c88cd89b3f3d6d140f6eb0cec20e2f57a7ff563
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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;
    }
}