build_app
This commit is contained in:
parent
23e35c3b98
commit
60e5660274
@ -69,6 +69,12 @@ public class BuilderService {
|
|||||||
executeDump(true);
|
executeDump(true);
|
||||||
|
|
||||||
// ADD OTHER SERVICE
|
// ADD OTHER SERVICE
|
||||||
|
addCustomMenu( "Calculator","Calculator", "Transcations");
|
||||||
|
|
||||||
|
|
||||||
|
addCustomMenu( "Calculator","Calculator", "Transcations");
|
||||||
|
|
||||||
|
|
||||||
addCustomMenu( "Note","Note", "Transcations");
|
addCustomMenu( "Note","Note", "Transcations");
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,2 +1,4 @@
|
|||||||
CREATE TABLE app-d.Note(id BIGINT NOT NULL AUTO_INCREMENT, content VARCHAR(400), createdat Date, title VARCHAR(400), PRIMARY KEY (id));
|
CREATE TABLE app-d.Calculator(id BIGINT NOT NULL AUTO_INCREMENT, result int, display VARCHAR(400), number1 int, number2 int, operation VARCHAR(400), PRIMARY KEY (id));
|
||||||
|
|
||||||
|
CREATE TABLE app-d.Calculator(id BIGINT NOT NULL AUTO_INCREMENT, number2 int, number1 int, result VARCHAR(400), PRIMARY KEY (id));
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component';
|
import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component';
|
||||||
|
|
||||||
|
|
||||||
@ -299,6 +301,10 @@ const routes: Routes = [
|
|||||||
// buildercomponents
|
// buildercomponents
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{path:'Notesappwireframe',component:NotesappwireframeComponent},
|
{path:'Notesappwireframe',component:NotesappwireframeComponent},
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component';
|
import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component';
|
||||||
|
|
||||||
|
|
||||||
@ -172,6 +174,10 @@ import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component'
|
|||||||
// buildercomponents
|
// buildercomponents
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
NotesappwireframeComponent,
|
NotesappwireframeComponent,
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -226,4 +226,13 @@
|
|||||||
"MENU_ACTION_LINK": "Menu Action Link",
|
"MENU_ACTION_LINK": "Menu Action Link",
|
||||||
"STATUS": "Status",
|
"STATUS": "Status",
|
||||||
"SUB_MENU": "Sub Menu",
|
"SUB_MENU": "Sub Menu",
|
||||||
|
"result": "result",
|
||||||
|
"Number2": "Number2",
|
||||||
|
"Number1": "Number1",
|
||||||
|
"Calculator": "Calculator",
|
||||||
|
"display": "display",
|
||||||
|
"number1": "number1",
|
||||||
|
"number2": "number2",
|
||||||
|
"operation": "operation",
|
||||||
|
"Result": "Result"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user