cloudroam
2025-06-26 2e0e1c5cde0585669334ebc64ff50eae68770726
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格式存储)
@@ -103,4 +110,27 @@
     */
    private String visitorPhotos;
    /**
     *  省
     */
    private String province;
    /**
     *  市
     */
    private String city;
    /**
     *  区
     */
    private String region;
    /**
     * 景点热度
     */
    private Double locationWeight;
    private Integer operationWeight;
}