|  |  | 
 |  |  |     private String value; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 类型 1: String  2: JSON   | 
 |  |  |      * 类型 1: String  2: JSON | 
 |  |  |      */ | 
 |  |  |     private Short type; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 状态 1: 正常  0: 禁用   | 
 |  |  |      * 状态 1: 正常  0: 禁用 | 
 |  |  |      */ | 
 |  |  |     private Short status; | 
 |  |  |  | 
 |  |  |     public Config() {} | 
 |  |  |     public Config() { | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public Config(String name,String code,String value,Short type,Short status) { | 
 |  |  |     public Config(String name, String code, String value, Short type, Short status) { | 
 |  |  |         this.name = name; | 
 |  |  |         this.code = code; | 
 |  |  |         this.value = value; | 
 |  |  | 
 |  |  |         return type; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getType$(){ | 
 |  |  |         if (null == this.type){ return null; } | 
 |  |  |         switch (this.type){ | 
 |  |  |     public String getType$() { | 
 |  |  |         if (null == this.type) { | 
 |  |  |             return null; | 
 |  |  |         } | 
 |  |  |         switch (this.type) { | 
 |  |  |             case 1: | 
 |  |  |                 return "String"; | 
 |  |  |             case 2: | 
 |  |  | 
 |  |  |         return status; | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getStatus$(){ | 
 |  |  |         if (null == this.status){ return null; } | 
 |  |  |         switch (this.status){ | 
 |  |  |     public String getStatus$() { | 
 |  |  |         if (null == this.status) { | 
 |  |  |             return null; | 
 |  |  |         } | 
 |  |  |         switch (this.status) { | 
 |  |  |             case 1: | 
 |  |  |                 return "正常"; | 
 |  |  |             case 0: |