lmw
2024-06-07 4264d859bb9f6cbc4c069a9350c917f1b23009dd
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.future.dispatch.base;
 
public class BaseEvent {
 
    //        showDialog()
//        val map: HashMap<String, Any> = HashMap()
//        map["type"] = "1"
//        HttpManager.getInstance().post(Api.getParamInfo, map, object : MyObserver(this) {
//            override fun success(responseString: String?) {
//                var banner: BannerBean = Gson().fromJson(responseString, BannerBean::class.java)
//                dismissDialog()
//            }
//
//        })
    public static final int PAY_SUCCESS = 11000; //微信支付成功
 
    public static final int OUT_APP = 10000;
 
    public static final int SELECT_POINT_SITE = 10001; //选择 站点
 
    public static final int SELECT_LINE_SITE = 10002; // 选择线路
 
    public static final int SELECT_CLASS_SITE = 10003; // 选择班次
 
    public static final int SELECT_POINT_SITE_DETAIL = 10004; // 选择上车点 选择下车点
 
    public static final int SELECT_SEARCH_SITE = 10005; // 搜索地点选择
 
    public static final int FILTER_LIST_ORDER = 10006; // 筛选条件 专车或跨城
 
    public static final int FILTER_CHANGE_ORDER = 10007; // 订单改派完成
 
    private String msg;
    private int code;
    private int type;
    private String msgTwo;
    private String msgthree;
    private int typeTwo;
 
    public int getTypeTwo() {
        return typeTwo;
    }
 
 
    public void setTypeTwo(int typeTwo) {
        this.typeTwo = typeTwo;
    }
 
    public BaseEvent(int code) {
        this.code = code;
    }
 
    public BaseEvent(int code, int type) {
        this.code = code;
        this.type = type;
    }
 
    public BaseEvent(int code, String msg, String msgTwo) {
        this.msg = msg;
        this.code = code;
        this.msgTwo = msgTwo;
    }
 
    public BaseEvent(String msg, int code) {
        this.msg = msg;
        this.code = code;
    }
 
    public BaseEvent( int code,String msg) {
        this.msg = msg;
        this.code = code;
    }
 
    public BaseEvent(int code, int type, int typeTwo) {
        this.code = code;
        this.type = type;
        this.typeTwo = typeTwo;
    }
 
    public BaseEvent(int code, String msg,  String msgTwo, String msgthree) {
        this.msg = msg;
        this.code = code;
        this.msgTwo = msgTwo;
        this.msgthree = msgthree;
    }
 
    public String getMsgthree() {
        return msgthree;
    }
 
    public void setMsgthree(String msgthree) {
        this.msgthree = msgthree;
    }
 
    public String getMsgTwo() {
        return msgTwo;
    }
 
    public void setMsgTwo(String msgTwo) {
        this.msgTwo = msgTwo;
    }
 
    public int getCode() {
        return code;
    }
 
    public void setCode(int code) {
        this.code = code;
    }
 
    public BaseEvent(String msg) {
        this.msg = msg;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public void setMsg(String msg) {
        this.msg = msg;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
}