19 lines
354 B
TypeScript
19 lines
354 B
TypeScript
|
|
import type { Admin } from "./admin"
|
||
|
|
import type { Billing } from "./billing"
|
||
|
|
import type { User } from "./user"
|
||
|
|
|
||
|
|
export type Balance = {
|
||
|
|
id: number
|
||
|
|
user_id: string
|
||
|
|
bill_id: string
|
||
|
|
admin_id: string
|
||
|
|
amount: number
|
||
|
|
balance_prev: number
|
||
|
|
balance_curr: number
|
||
|
|
remark: string
|
||
|
|
created_at: Date
|
||
|
|
user?: User
|
||
|
|
admin?: Admin
|
||
|
|
bill?: Billing
|
||
|
|
}
|