Initial commit: LACA parking management system
This commit is contained in:
32
backend/prisma/packingCrawler/model.ts
Normal file
32
backend/prisma/packingCrawler/model.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
export class CSVRow {
|
||||
place_id?: string;
|
||||
name?: string;
|
||||
description?: string;
|
||||
is_spending_on_ads?: string;
|
||||
reviews?: string;
|
||||
rating?: string;
|
||||
competitors?: string;
|
||||
website?: string;
|
||||
phone?: string;
|
||||
can_claim?: string;
|
||||
owner_name?: string;
|
||||
owner_profile_link?: string;
|
||||
featured_image?: string;
|
||||
main_category?: string;
|
||||
categories?: string;
|
||||
workday_timing?: string;
|
||||
is_temporarily_closed?: string;
|
||||
closed_on?: string;
|
||||
address?: string;
|
||||
review_keywords?: string;
|
||||
link?: string;
|
||||
query?: string;
|
||||
lat?: number;
|
||||
lng?: number;
|
||||
city?: string;
|
||||
district?: string;
|
||||
ward?: string;
|
||||
open?: string;
|
||||
close?: string;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user