懒羊羊
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月22日 下午12:14:59
25  */
26 @Getter
27 public enum MenuStatus {
28
29     ENABLE("ENABLE", "启用"),
30     DISABLE("DISABLE", "禁用");
31
32     public String getCode() {
33         return code;
34     }
35
36     public void setCode(String code) {
37         this.code = code;
38     }
39
40     public String getMessage() {
41         return message;
42     }
43
44     public void setMessage(String message) {
45         this.message = message;
46     }
47
48     String code;
49     String message;
50
51     MenuStatus(String code, String message) {
52         this.code = code;
53         this.message = message;
54     }
55
56     public static String getDescription(String status) {
57         if (status == null) {
58             return "";
59         } else {
60             for (MenuStatus s : MenuStatus.values()) {
61                 if (s.getCode().equals(status)) {
62                     return s.getMessage();
63                 }
64             }
65             return "";
66         }
67     }
68 }