Add custom page
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user