Commit daa8fef1b38cbb0a6fe370fd4e8c201f8eaa9067
1 parent
9df7b03ad7
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 4 additions and 2 deletions
platform-common/src/main/java/com/lyms/platform/common/enums/MsgStatusEnums.java
View file @
daa8fef
... | ... | @@ -6,12 +6,14 @@ |
6 | 6 | * 消息推送状态 |
7 | 7 | */ |
8 | 8 | public enum MsgStatusEnums { |
9 | - //1:未推送,2:已推送,3:推送成功4:暂不推送 5:推送失败 | |
9 | + //1:未推送,2:已推送,3:推送成功4:暂不推送 5:推送失败 6 :用户未绑定 7:拒绝接收 | |
10 | 10 | NO_SEND(1,"未推送"), |
11 | 11 | SENDED(2,"已推送"), |
12 | 12 | SEND_SUCCESS(3,"推送成功"), |
13 | 13 | STOP_SEND(4,"暂不推送"), |
14 | - SEND_FAIL(5,"推送失败"); | |
14 | + SEND_FAIL(5,"推送失败"), | |
15 | + NO_BIND(6,"用户未绑定"), | |
16 | + USER_REJECT(7,"拒绝接收"); | |
15 | 17 | |
16 | 18 | private MsgStatusEnums(int id, String name){ |
17 | 19 | this.name=name; |