cloudroam
2025-06-11 fb514e661e644bc40dba3d2413a64ff5e86bf6be
src/main/java/com/mzl/flower/dto/request/film/FilmLikesDTO.java
@@ -13,94 +13,7 @@
    private Integer filmId;
    /**
     * 拍摄地点名称
     */
    private String locationName;
    /**
     * 详细地址
     */
    private String address;
    /**
     * 纬度坐标(精确到小数点后6位)
     */
    private BigDecimal gpsLat;
    /**
     * 经度坐标(精确到小数点后6位)
     */
    private BigDecimal gpsLng;
    /**
     * 拍摄开始日期
     */
    private LocalDate startDate;
    /**
     * 拍摄结束日期
     */
    private LocalDate endDate;
    /**
     * 场景类型
     */
    private String sceneType;
    /**
     * 经典画面描述
     */
    private String classicScene;
    /**
     * 是否开放参观(0否,1是)
     */
    private Boolean isOpenVisit;
    /**
     * 参观提示(JSON格式存储)
     */
    private String visitInfo;
    /**
     * 地标性建筑描述
     */
    private String landmarkDesc;
    /**
     * 交通指引说明
     */
    private String transportGuide;
    /**
     * 停车场信息
     */
    private String parkingInfo;
    /**
     * 周边设施描述
     */
    private String surroundingFacilities;
    /**
     * AR实景对比功能入口URL
     */
    private String arEntry;
    /**
     * 状态(0禁用,1启用)
     * 收藏状态(0取消,1有效)
     */
    private Boolean status;
    /**
     * 打卡记录量
     */
    private Integer checkinCount;
    /**
     * 游客实拍图(存储JSON数组)
     */
    private String visitorPhotos;
}