feat(server): settings and module crud added in

This commit is contained in:
2025-03-04 16:43:45 -06:00
parent 5b9cadb76e
commit 2ad1dcc55b
19 changed files with 701 additions and 14 deletions

12
server/types/settings.ts Normal file
View File

@@ -0,0 +1,12 @@
export interface Settings {
settings_id?: string | null;
name: string | null;
value: string | null;
description: string | null;
module_id: string | null;
role: string | null;
add_User: string | null;
add_Date: Date;
upd_user: string | null;
upd_date: Date;
}