1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ots.common.enums;
| import lombok.Getter;
|
| @Getter
| public enum SmsStatusEnum {
| Untreated_0("0", "未处理"),
| issent_1("1", "已发送"),
| Sending_2("2", "发送中"),
| SENDFAILD_3("3", "发送失败"),
| RET_4("4", "退信"),
| DISHONOR("5","对方拒收"),
| not_enough_space("6","空间不足"),
| invalid_address("7","地址无效"),
| ISOPEN("8","已经打开");
| private String code;
| private String message;
| SmsStatusEnum(String code, String message) {
| this.code = code;
| this.message = message;
| }
| }
|
|