|
@@ -33,9 +33,9 @@ public enum OladingCertStatus {
|
|
* @return 如果存在返回枚举,否则返回 {@code null}
|
|
* @return 如果存在返回枚举,否则返回 {@code null}
|
|
*/
|
|
*/
|
|
public static OladingCertStatus resolve(final String code) {
|
|
public static OladingCertStatus resolve(final String code) {
|
|
- for (OladingCertStatus yeeCertStatus : OladingCertStatus.values()) {
|
|
|
|
- if (yeeCertStatus.getCode().equals(code)) {
|
|
|
|
- return yeeCertStatus;
|
|
|
|
|
|
+ for (OladingCertStatus oladingCertStatus : OladingCertStatus.values()) {
|
|
|
|
+ if (oladingCertStatus.getCode().equals(code)) {
|
|
|
|
+ return oladingCertStatus;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return UN_SIGNED;
|
|
return UN_SIGNED;
|