zjj
2025-02-17 a68b7f0d46a830f338217c72c22d7e63d219e5b4
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;
            }
        }