#
luxiaotao1123
2022-12-03 016e53e660f790418bcc420ff4829d08fc290af3
src/main/java/com/zy/core/enums/SteChargeType.java
@@ -31,4 +31,17 @@
        return null;
    }
    public static SteChargeType get(int ssbm) {
        if (Cools.isEmpty(ssbm)) {
            return null;
        }
        SteChargeType[] values = SteChargeType.values();
        for (SteChargeType value : values) {
            if (value.ssbm == ssbm) {
                return value;
            }
        }
        return null;
    }
}