From 500078714411487af00161e01bd7e0b5efdc3414 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期四, 07 八月 2025 13:32:32 +0800
Subject: [PATCH] add:热门景点
---
types/index.ts | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 56 insertions(+), 2 deletions(-)
diff --git a/types/index.ts b/types/index.ts
index aa993f3..81be94e 100644
--- a/types/index.ts
+++ b/types/index.ts
@@ -56,7 +56,7 @@
/** 发布状态(COMMON_PUBLISH_STATUS) */
status?: string;
- /** 分类:1-为你精选,2-光影社区 */
+ /** 分类:1-为你精选,2-光影天地 */
classify?: number;
/** 创建日期(yyyy-mm-dd)开始 */
@@ -228,6 +228,11 @@
createBy: string;
createTime: string;
updateBy: string | null;
+ liked: boolean;
+ collected: boolean;
+ voLikeCount: number;
+ voCollectCount: number;
+ voCommentCount: number;
}
@@ -299,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