许鹏程
2023-05-25 213cc37cbf0b2515a4de56cc1e01813211bad183
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package com.product.admin.entity;
 
import java.util.List;
 
/**
 * Copyright © 2019
 *
 * @Title: MenuTree
 * @Project: LX
 * @Date: 2019-06-01 01:07
 * @Author: Dave.Luo
 * @Description:  后台管理菜单实体树结构
 */
public class MenuTree {
 
    private String uuid;                    //唯一标示
    private String menu_name;               //菜单名称
    private String menu_description = "";         //菜单说明
    private String tricode;                 //编码
    private String tricode_parent;          //父编码
    private String is_show;                 //是否显示
    private String sequence;                //排序
    private String menu_icon = "";              //菜单图标
    private String created_by;             //创建者
    private String created_utc_datetime;   //创建时间
    private String function_uuid = "";       //功能uuid
    private String function_name = "";       //功能名
    private String product_uuid = "";       //产品uuid
    private String product_name = "";       //产品名
    private List<MenuTree> product_sys_menus;//下级菜单
 
    public String getUuid() {
        return uuid;
    }
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    public String getMenu_name() {
        return menu_name;
    }
 
    public void setMenu_name(String menu_name) {
        this.menu_name = menu_name;
    }
 
    public String getMenu_description() {
        return menu_description;
    }
 
    public void setMenu_description(String menu_description) {
        this.menu_description = menu_description;
    }
 
    public String getTricode() {
        return tricode;
    }
 
    public void setTricode(String tricode) {
        this.tricode = tricode;
    }
 
    public String getTricode_parent() {
        return tricode_parent;
    }
 
    public void setTricode_parent(String tricode_parent) {
        this.tricode_parent = tricode_parent;
    }
 
    public String getIs_show() {
        return is_show;
    }
 
    public void setIs_show(String is_show) {
        this.is_show = is_show;
    }
 
    public String getSequence() {
        return sequence;
    }
 
    public void setSequence(String sequence) {
        this.sequence = sequence;
    }
 
    public String getMenu_icon() {
        return menu_icon;
    }
 
    public void setMenu_icon(String menu_icon) {
        this.menu_icon = menu_icon;
    }
 
    public String getCreated_by() {
        return created_by;
    }
 
    public void setCreated_by(String created_by) {
        this.created_by = created_by;
    }
 
    public String getCreated_utc_datetime() {
        return created_utc_datetime;
    }
 
    public void setCreated_utc_datetime(String created_utc_datetime) {
        this.created_utc_datetime = created_utc_datetime;
    }
 
    public String getFunction_uuid() {
        return function_uuid;
    }
 
    public void setFunction_uuid(String function_uuid) {
        this.function_uuid = function_uuid;
    }
 
    public String getFunction_name() {
        return function_name;
    }
 
    public void setFunction_name(String function_name) {
        this.function_name = function_name;
    }
 
    public String getProduct_uuid() {
        return product_uuid;
    }
 
    public void setProduct_uuid(String product_uuid) {
        this.product_uuid = product_uuid;
    }
 
    public String getProduct_name() {
        return product_name;
    }
 
    public void setProduct_name(String product_name) {
        this.product_name = product_name;
    }
 
    public List<MenuTree> getMrbase_sys_menus() {
        return product_sys_menus;
    }
 
    public void setMrbase_sys_menus(List<MenuTree> product_sys_menus) {
        this.product_sys_menus =product_sys_menus;
    }
}