2026-03-26 15:27:52 +08:00
|
|
|
import type { Resource } from "./resources"
|
|
|
|
|
import type { User } from "./user"
|
|
|
|
|
|
2026-01-05 09:14:41 +08:00
|
|
|
export type Batch = {
|
|
|
|
|
id: number
|
|
|
|
|
batch_no: string
|
|
|
|
|
prov: string
|
|
|
|
|
city: string
|
|
|
|
|
ip: string
|
|
|
|
|
isp: string
|
|
|
|
|
count: string
|
|
|
|
|
resource_id: string
|
|
|
|
|
time: string
|
2026-03-26 15:27:52 +08:00
|
|
|
user?: User
|
|
|
|
|
resource?: Resource
|
2026-01-05 09:14:41 +08:00
|
|
|
}
|