12 lines
175 B
TypeScript
12 lines
175 B
TypeScript
|
|
export type BatchRecord = {
|
||
|
|
batch_no: string
|
||
|
|
ip: string
|
||
|
|
id: number
|
||
|
|
count: number
|
||
|
|
isp: string
|
||
|
|
resource_id: number
|
||
|
|
time: string
|
||
|
|
user_id: number
|
||
|
|
prov: string
|
||
|
|
}
|