Administrator
2018-11-12 ff211408b23e1162b450041100cf59e6beb77484
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
package com.yeshi.fanli.entity.bus.msg.content;
 
/**
 * 账号异常
 * 
 * @author Administrator
 *
 */
public class MsgTypeAccountException {
    public enum MsgTypeAccountExceptionEnumType {
        accountException("账号异常");
        private final String desc;
 
        private MsgTypeAccountExceptionEnumType(String desc) {
            this.desc = desc;
        }
 
        public String getDesc() {
            return desc;
        }
    }
 
    private MsgTypeAccountExceptionEnumType type;
    private String limitFuction;
    private String beiZhu;
 
    public MsgTypeAccountExceptionEnumType getType() {
        return type;
    }
 
    public void setType(MsgTypeAccountExceptionEnumType type) {
        this.type = type;
    }
 
    public String getLimitFuction() {
        return limitFuction;
    }
 
    public void setLimitFuction(String limitFuction) {
        this.limitFuction = limitFuction;
    }
 
    public String getBeiZhu() {
        return beiZhu;
    }
 
    public void setBeiZhu(String beiZhu) {
        this.beiZhu = beiZhu;
    }
 
}