懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 /**
2  * Copyright 2018-2020 stylefeng & fengshuonan (https://gitee.com/stylefeng)
3  * <p>
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * <p>
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * <p>
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package cn.stylefeng.guns.sys.core.constant.state;
17
18 import lombok.Getter;
19
20 /**
21  * 管理员的状态
22  *
23  * @author fengshuonan
24  * @Date 2017年1月10日 下午9:54:13
25  */
26 @Getter
27 public enum ManagerStatus {
28
29     OK("ENABLE", "启用"), FREEZED("LOCKED", "冻结"), DELETED("DELETED", "被删除");
30
31     public String getCode() {
32         return code;
33     }
34
35     public void setCode(String code) {
36         this.code = code;
37     }
38
39     public String getMessage() {
40         return message;
41     }
42
43     public void setMessage(String message) {
44         this.message = message;
45     }
46
47     String code;
48     String message;
49
50     ManagerStatus(String code, String message) {
51         this.code = code;
52         this.message = message;
53     }
54
55     public static String getDescription(String value) {
56         if (value == null) {
57             return "";
58         } else {
59             for (ManagerStatus ms : ManagerStatus.values()) {
60                 if (ms.getCode().equals(value)) {
61                     return ms.getMessage();
62                 }
63             }
64             return "";
65         }
66     }
67 }