From a403393c1190994b473e679e1751794d9a1b9502 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期二, 01 七月 2025 10:36:07 +0800 Subject: [PATCH] add: 分享+景点管理 --- types/index.ts | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 50 insertions(+), 1 deletions(-) diff --git a/types/index.ts b/types/index.ts index f214c6d..7ba6aaa 100644 --- a/types/index.ts +++ b/types/index.ts @@ -304,4 +304,53 @@ size: number; url: string; status: string; - } \ No newline at end of file + } + + +export interface FilmLocationVO { + address?: string, + arEntry?: string, + checkinCount?: number, + city?: string, + classicScene?: string, + endDate?: string, + filmId?: number, + gpsLat?: number, + gpsLng?: number, + id?: number, + isEnabled?: boolean, + isOpenVisit?: string, + isOpenVisitStr?: string, + landmarkDesc?: string, + locationName?: string, + locationUrl?: string, + locationWeight?: number, + operationWeight?: number, + parkingInfo?: string, + province?: string, + region?: string, + sceneType?: string, + startDate?: string, + surroundingFacilities?: string, + transportGuide?: string, + visitInfo?: string, + visitorPhotos?: string +} + +export interface FilmWorksQueryDTO extends PaginationQuery { + + /** 拍摄地点名称 */ + locationName?: string; + + /** 所在省 */ + province?: string; + + /** 所在市 */ + city?: string; + + /** 所在区 */ + region?: string; + + /** 启用/禁用(USER_ENABLED_OR_DISABLED) */ + isEnabled?: boolean; +} -- Gitblit v1.9.3