Commit 8aaa1e50 authored by 胡文斌's avatar 胡文斌

合并微前端

parent 5b6613d1
...@@ -99,4 +99,13 @@ public abstract class BaseSystem<M extends BaseSystem<M>> extends Model<M> imple ...@@ -99,4 +99,13 @@ public abstract class BaseSystem<M extends BaseSystem<M>> extends Model<M> imple
return getStr("DESCRIPTION"); return getStr("DESCRIPTION");
} }
public M setMicroApp(java.lang.String microApp) {
set("MICRO_APP", microApp);
return (M)this;
}
public java.lang.String getMicroApp() {
return getStr("MICRO_APP");
}
} }
...@@ -64,7 +64,7 @@ select * from AS_USER where USERNAME=#para(0) ...@@ -64,7 +64,7 @@ select * from AS_USER where USERNAME=#para(0)
### 获取系统,应用菜单使用 ### 获取系统,应用菜单使用
#sql("getSystems") #sql("getSystems")
select ID, NAME, TITLE, TYPE, URL, DESCRIPTION from AS_SYSTEM order by ID select ID, NAME, TITLE, TYPE, URL, DESCRIPTION,MICRO_APP from AS_SYSTEM order by ID
#end #end
### 获取系统 ### 获取系统
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment