张海江
2017-08-11 51f8633b379efab41a8b19a375d5e41785a15ee6
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
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;
    }
}