cloudroam
4 天以前 46715d892da947c31f07796fdc79dbbef06677b3
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;
}