| | |
| | | |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import com.mzl.flower.base.BaseEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | |
| | | /** |
| | | * 关联的影视作品ID |
| | | */ |
| | | private Integer filmId; |
| | | private Long filmId; |
| | | |
| | | /** |
| | | * 拍摄地点名称 |
| | | */ |
| | | private String locationName; |
| | | |
| | | /** |
| | | * 拍摄地点图片 |
| | | */ |
| | | private String locationUrl; |
| | | |
| | | /** |
| | | * 详细地址 |
| | |
| | | /** |
| | | * 是否开放参观(0否,1是) |
| | | */ |
| | | private Boolean isOpenVisit; |
| | | private String isOpenVisit; |
| | | |
| | | /** |
| | | * 参观提示(JSON格式存储) |
| | |
| | | /** |
| | | * 状态(0禁用,1启用) |
| | | */ |
| | | private Integer status; |
| | | private Boolean isEnabled; |
| | | |
| | | /** |
| | | * 打卡记录量 |
| | |
| | | */ |
| | | private String visitorPhotos; |
| | | |
| | | /** |
| | | * 省 |
| | | */ |
| | | private String province; |
| | | |
| | | /** |
| | | * 市 |
| | | */ |
| | | private String city; |
| | | |
| | | /** |
| | | * 区 |
| | | */ |
| | | private String region; |
| | | |
| | | /** |
| | | * 景点热度 |
| | | */ |
| | | private Double locationWeight; |
| | | |
| | | /** |
| | | * 运营权重 |
| | | */ |
| | | private Integer operationWeight; |
| | | |
| | | } |