From 46715d892da947c31f07796fdc79dbbef06677b3 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期一, 14 七月 2025 09:53:19 +0800 Subject: [PATCH] add:定时任务配置,热门城市 --- src/main/java/com/mzl/flower/dto/request/film/FilmLocationDTO.java | 46 +++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 43 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/mzl/flower/dto/request/film/FilmLocationDTO.java b/src/main/java/com/mzl/flower/dto/request/film/FilmLocationDTO.java index 69fc585..7f567d7 100644 --- a/src/main/java/com/mzl/flower/dto/request/film/FilmLocationDTO.java +++ b/src/main/java/com/mzl/flower/dto/request/film/FilmLocationDTO.java @@ -7,15 +7,22 @@ @Data public class FilmLocationDTO { + + private Long id; /** * 关联的影视作品ID */ - private Integer filmId; + private Long filmId; /** * 拍摄地点名称 */ private String locationName; + + /** + * 拍摄地点图片 + */ + private String locationUrl; /** * 详细地址 @@ -55,7 +62,7 @@ /** * 是否开放参观(0否,1是) */ - private Boolean isOpenVisit; + private String isOpenVisit; /** * 参观提示(JSON格式存储) @@ -90,7 +97,7 @@ /** * 状态(0禁用,1启用) */ - private Integer status; + private Boolean isEnabled; /** @@ -103,4 +110,37 @@ */ private String visitorPhotos; + /** + * 省 + */ + private String province; + + /** + * 市 + */ + private String city; + + /** + * 区 + */ + private String region; + + /** + * 景点热度 + */ + private Double locationWeight; + + + private Integer operationWeight; + + /** + * 创建者ID + */ + private String createBy; + + /** + * 最后修改者ID + */ + private String updateBy; + } -- Gitblit v1.9.3