project init

This commit is contained in:
limqhz
2020-01-29 21:50:10 +08:00
parent 3d215fe181
commit d4c677d2b5
821 changed files with 111343 additions and 73 deletions

View File

@@ -0,0 +1,25 @@
package com.enums;
public enum SmsEnum {
ALIYUN(1, "阿里云"),
ALIDAYU(2, "阿里大于"),
CCP(3, "容联云通讯"),
YUN_PIAN(4, "云片"),
CHUANG_LAN(5, "创蓝"),
JUHE(6, "聚合");
public Byte value;
public String name;
SmsEnum(Integer value, String name) {
this.value = value.byteValue();
this.name = name;
}
public Byte getValue() {
return value;
}
public String getName() {
return name;
}
}