Cash Bank Detail Table

This commit is contained in:
efrilm
2025-09-10 19:42:26 +07:00
parent 2c754d96fd
commit e267a50946
8 changed files with 747 additions and 8 deletions
+10
View File
@@ -0,0 +1,10 @@
export type CashBankType = {
id: number
date: string
description: string
reference: string
accept: number
send: number
balance: number
status: string
}