田源
2024-03-07 4b4083fd73dc27ece42f4835483565eef0e4f608
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
package com.vci.server.framework.appConfig;
import com.vci.common.objects.AbstractHistorizable;
    /**
     * AppConfigDetail Hibernate Object
     *
     */
    public class AppConfigDetail extends AbstractHistorizable implements java.io.Serializable {
        /**
         * 
         */
        private static final long serialVersionUID = 1L;
        private String id = "";
        private String name = "";
        private String desc = "";
        private String key = "";
        private String value = "";
        private String categoryId = "";
        private AppConfigCategory category = new AppConfigCategory();
        public AppConfigDetail(){
        }
        public String getId(){
            return this.id;
        }
        public void setId(String val){
            this.id = val;
        }
        public String getName(){
            return this.name;
        }
        public void setName(String val){
            this.name = val;
        }
        public String getDesc(){
            return this.desc;
        }
        public void setDesc(String val){
            this.desc = val;
        }
        public String getKey(){
            return this.key;
        }
        public void setKey(String val){
            this.key = val;
        }
        public String getValue(){
            return this.value;
        }
        public void setValue(String val){
            this.value = val;
        }
        public String getCategoryId(){
            return this.categoryId;
        }
        public void setCategoryId(String val){
            this.categoryId = val;
        }
        public AppConfigCategory getCategory() {
            return category;
        }
        public void setCategory(AppConfigCategory category) {
            this.category = category;
        }
        
    }