|
@@ -1,7 +1,5 @@
|
|
|
package com.qmth.boot.core.solar.model;
|
|
|
|
|
|
-import com.qmth.boot.core.solar.enums.AppType;
|
|
|
-
|
|
|
/**
|
|
|
* 应用基础信息
|
|
|
*/
|
|
@@ -11,7 +9,7 @@ public class AppInfo {
|
|
|
|
|
|
private String name;
|
|
|
|
|
|
- private AppType type;
|
|
|
+ private String code;
|
|
|
|
|
|
private AppControl control;
|
|
|
|
|
@@ -27,20 +25,20 @@ public class AppInfo {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
+ public String getCode() {
|
|
|
+ return code;
|
|
|
}
|
|
|
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
+ public void setCode(String code) {
|
|
|
+ this.code = code;
|
|
|
}
|
|
|
|
|
|
- public AppType getType() {
|
|
|
- return type;
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
}
|
|
|
|
|
|
- public void setType(AppType type) {
|
|
|
- this.type = type;
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
}
|
|
|
|
|
|
public AppControl getControl() {
|