zjj
2025-02-17 54b4f53323d0833cbac86fd18932c5fa5a5447a8
zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/rcs/model/enums/SlaveType.java
@@ -3,18 +3,18 @@
public enum SlaveType {
    Crn,
    Devp,
    Barcode,
    Led,
    Scale,
    Ste,
    Shuttle,
    Lift,
    Conveyor,
    ;
    public static SlaveType findInstance(String s){
        for (SlaveType type : SlaveType.values()) {
            if (type.toString().equals(s)) {
            if (type.toString().toUpperCase().equals(s.toUpperCase())) {
                return type;
            }
        }