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
package com.vci.client.framework.appConfig.object;
import java.util.*;
    /**
     * AppConfigCategory Client Object
     *
     */
    public class AppConfigCategoryObject implements java.io.Serializable {
        /**
         * 
         */
        private static final long serialVersionUID = 1L;
        private String id = "";
        private String name = "";
        private String desc = "";
        public AppConfigCategoryObject(){
        }
        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 toString() {
            return this.name;
        }
    }