| | |
| | | public static final int APP_BACKGROUND = 10033; // App置于后台 |
| | | |
| | | public static final int APP_LOG= 10099; // 日志 |
| | | public static final int ORDER_GRAB_EVENT= 10100; // 订单被抢,关闭强单页 |
| | | public static final int GET_SMALL_ORDER= 10101; // 获取到推送的小程序订单显示在前台 |
| | | |
| | | |
| | | private String msg; |
| | | private int code; |
| | |
| | | this.typeTwo = typeTwo; |
| | | } |
| | | |
| | | public BaseEvent(int code, int type, int typeTwo,String msg) { |
| | | this.code = code; |
| | | this.type = type; |
| | | this.typeTwo = typeTwo; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public BaseEvent(int code, int type, String msg) { |
| | | this.code = code; |
| | | this.type = type; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public BaseEvent(int code, String msg, String msgTwo, String msgthree) { |
| | | this.msg = msg; |
| | | this.code = code; |