|
@@ -19,7 +19,7 @@ public class AppInfo implements Serializable {
|
|
|
private String name;
|
|
|
|
|
|
//应用编码
|
|
|
- //private String code;
|
|
|
+ private String code;
|
|
|
|
|
|
//控制参数
|
|
|
private AppControl control;
|
|
@@ -36,13 +36,13 @@ public class AppInfo implements Serializable {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- // public String getCode() {
|
|
|
- // return code;
|
|
|
- // }
|
|
|
- //
|
|
|
- // public void setCode(String code) {
|
|
|
- // this.code = code;
|
|
|
- // }
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|