feat(REQ-3714): 枚举加上是否三方的方法

This commit is contained in:
zhanghonghao 2025-03-07 15:24:26 +08:00
parent 61626a7a73
commit ddeb46cccb

View File

@ -34,4 +34,8 @@ public enum CheckInfoTypeEnum {
return thirdTypeMap.get(type);
}
public static boolean isThirdType(CheckInfoTypeEnum type) {
return type.getThirdType() > 0;
}
}