1
0
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity Security Code Quality

Add custom page

This commit is contained in:
2025-07-06 16:24:34 +07:00
parent e8f76f395a
commit 815de2932b
28 changed files with 4457 additions and 22 deletions

View File

@@ -11,14 +11,14 @@ export interface Customer {
email: string;
// email2?: string;
mobile: string;
// originAdd1: string;
originAdd1: string;
// originAdd2: string;
// originAdd3: string;
// originCity: string;
// originState: string;
// originPostcode: string;
// originCountry: string;
// localAdd1: string;
localAdd1: string;
// localAdd2: string;
// localAdd3: string;
// localCity: string;
@@ -54,9 +54,22 @@ export interface User {
isDeleted: boolean;
}
export interface UserPermission {
id: number;
userId: number;
permissionId: number;
}
export interface Permission {
id: number;
name: string;
description: string;
isActive: boolean;
}
export interface CustomerDependant {
id: number;
custId: string;
custId: number;
// deptSeq: number;
firstNameEn: string;
lastNameEn: string;
@@ -65,16 +78,16 @@ export interface CustomerDependant {
// firstNameJpKana: string;
// lastNameJpKana: string;
email: string;
email2?: string;
// mobile: string;
// originAdd1: string;
// email2?: string;
mobile: string;
originAdd1: string;
// originAdd2: string;
// originAdd3: string;
// originCity: string;
// originState: string;
// originPostcode: string;
// originCountry: string;
// localAdd1: string;
localAdd1: string;
// localAdd2: string;
// localAdd3: string;
// localCity: string;
@@ -97,5 +110,7 @@ export interface CustomerDependant {
export interface DBSchema {
customers: Customer[];
users: User[];
userPermissions: UserPermission[];
permissions: Permission[];
customerDependants: CustomerDependant[];
}