1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.qianwen.core.sms.enums;
|
| /* loaded from: blade-starter-sms-9.3.0.0-SNAPSHOT.jar:org/springblade/core/sms/enums/SmsStatusEnum.class */
| public enum SmsStatusEnum {
| DISABLE(1),
| ENABLE(2);
|
| final int num;
|
| SmsStatusEnum(final int num) {
| this.num = num;
| }
|
| public int getNum() {
| return this.num;
| }
| }
|
|