Spaces:
Runtime error
Runtime error
File size: 180 Bytes
e66f26b |
1 2 3 4 5 6 7 8 9 |
export interface PwGlaccountsInterface {
id?: number;
pw_id: bigint;
name: string;
account_number: string | null;
created_at?: Date;
updated_at?: Date;
}
|