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
| package com.dobbinsoft.fw.support.component.open.model;
|
| import com.dobbinsoft.fw.core.enums.BaseEnums;
|
| public enum OPNotifyStatusType implements BaseEnums<Integer> {
| OK(1, "推送完成"),
| FAIL(0, "推送失败")
| ;
|
| private Integer code;
|
| private String msg;
|
| OPNotifyStatusType(Integer code, String msg) {
| this.code = code;
| this.msg = msg;
| }
|
| @Override
| public Integer getCode() {
| return this.code;
| }
|
| @Override
| public String getMsg() {
| return this.msg;
| }
| }
|
|