|
@@ -18,10 +18,13 @@ package org.springblade.modules.ycwh.entity;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.EqualsAndHashCode;
|
|
|
import org.springblade.core.mp.base.BaseEntity;
|
|
import org.springblade.core.mp.base.BaseEntity;
|
|
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 名点 实体类
|
|
* 名点 实体类
|
|
|
*
|
|
*
|
|
@@ -34,5 +37,70 @@ import org.springblade.core.mp.base.BaseEntity;
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
public class FamousLocationEntity extends BaseEntity {
|
|
public class FamousLocationEntity extends BaseEntity {
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 备注
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
|
|
+ private String remark;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 顺序
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "顺序")
|
|
|
|
|
+ private Integer sort;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 封面
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "封面")
|
|
|
|
|
+ private String cover;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 名称
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "名称")
|
|
|
|
|
+ private String name;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 副标题
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "副标题")
|
|
|
|
|
+ private String subTitle;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 视频(多个用英文逗号隔开)
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "视频(多个用英文逗号隔开)")
|
|
|
|
|
+ private String videos;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 内容
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "内容")
|
|
|
|
|
+ private String content;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 所属地区id
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "所属地区id")
|
|
|
|
|
+ private Long regionId;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 地址
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "地址")
|
|
|
|
|
+ private String address;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 纬度
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "纬度")
|
|
|
|
|
+ private BigDecimal latitude;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 经度
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "经度")
|
|
|
|
|
+ private BigDecimal longitude;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 置顶
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "置顶")
|
|
|
|
|
+ private Boolean top;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 浏览量
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "浏览量")
|
|
|
|
|
+ private Integer views;
|
|
|
|
|
|
|
|
}
|
|
}
|