#
Junjie
2024-06-18 3ca4638e436076b583ae5da6ffef3e52a080b70a
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().toUpperCase().equals(s)) {
            if (type.toString().toUpperCase().equals(s.toUpperCase())) {
                return type;
            }
        }