dangsn
2025-01-16 d6e9b6f11fd8f36895eb70f092bdd8c412750111
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
package com.vci.client.framework.appConfig.object;
import java.util.*;
    /**
     * AppConfigDetail Client Object
     *
     */
    public class AppConfigDetailObject 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 = "";
        public AppConfigDetailObject(){
        }
        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;
        }
    }