yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.qianwen.smartman.modules.cps.enums;
 
import com.qianwen.core.tool.utils.Func;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/enums/TrayEnum.class */
public class TrayEnum {
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/enums/TrayEnum$AvailabilityEnum.class */
    public enum AvailabilityEnum {
        NO_LOAD(1, "空载"),
        LOAD(0, "负载");
        
        private final Integer status;
        private final String desc;
 
        AvailabilityEnum(final Integer status, final String desc) {
            this.status = status;
            this.desc = desc;
        }
 
        public Integer getStatus() {
            return this.status;
        }
 
        public String getDesc() {
            return this.desc;
        }
 
        public static AvailabilityEnum of(Integer enums) {
            AvailabilityEnum[] values;
            if (Func.isNull(enums)) {
                return NO_LOAD;
            }
            for (AvailabilityEnum value : values()) {
                if (value.status.equals(enums)) {
                    return value;
                }
            }
            return NO_LOAD;
        }
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/enums/TrayEnum$StatusEnum.class */
    public enum StatusEnum {
        ACTIVATING(1, "激活"),
        FREEZE(0, "冻结");
        
        private final Integer status;
        private final String desc;
 
        StatusEnum(final Integer status, final String desc) {
            this.status = status;
            this.desc = desc;
        }
 
        public Integer getStatus() {
            return this.status;
        }
 
        public String getDesc() {
            return this.desc;
        }
 
        public static StatusEnum of(Integer status) {
            if (status == null) {
                return ACTIVATING;
            }
            StatusEnum[] values = values();
            for (StatusEnum trayEnum : values) {
                if (trayEnum.status.equals(status)) {
                    return trayEnum;
                }
            }
            return ACTIVATING;
        }
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/enums/TrayEnum$FixtureEnum.class */
    public enum FixtureEnum {
        ACTIVATING(1, "激活"),
        FREEZE(0, "冻结");
        
        private final Integer status;
        private final String desc;
 
        FixtureEnum(final Integer status, final String desc) {
            this.status = status;
            this.desc = desc;
        }
 
        public Integer getStatus() {
            return this.status;
        }
 
        public String getDesc() {
            return this.desc;
        }
    }
}