build_app

This commit is contained in:
risadmin_prod 2025-10-08 09:59:37 +00:00
parent 6af46ece1b
commit 4e4d0c84bb
5 changed files with 12 additions and 3 deletions

View File

@ -69,6 +69,9 @@ public class BuilderService {
executeDump(true); executeDump(true);
// ADD OTHER SERVICE // ADD OTHER SERVICE
addCustomMenu( "Stopwatch","Stopwatch", "Transcations");
addCustomMenu( "Calculator","Calculator", "Transcations"); addCustomMenu( "Calculator","Calculator", "Transcations");

View File

@ -1,4 +1,2 @@
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.Stopwatch(id BIGINT NOT NULL AUTO_INCREMENT, time 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));

View File

@ -1,6 +1,7 @@
import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component'; import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component';
@ -305,6 +306,8 @@ const routes: Routes = [
{path:'Notesappwireframe',component:NotesappwireframeComponent}, {path:'Notesappwireframe',component:NotesappwireframeComponent},

View File

@ -1,6 +1,7 @@
import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component'; import { NotesappwireframeComponent } from './BuilderComponents/app-b/Notesappwireframe/Notesappwireframe.component';
@ -178,6 +179,8 @@ import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component'
NotesappwireframeComponent, NotesappwireframeComponent,

View File

@ -226,4 +226,6 @@
"MENU_ACTION_LINK": "Menu Action Link", "MENU_ACTION_LINK": "Menu Action Link",
"STATUS": "Status", "STATUS": "Status",
"SUB_MENU": "Sub Menu", "SUB_MENU": "Sub Menu",
"Stopwatch": "Stopwatch",
"Time": "Time"
} }