|
@@ -11,255 +11,257 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
* @author ruoyi
|
|
|
* @date 2022-05-06
|
|
|
*/
|
|
|
-public class CenterdataTBaidumap extends BaseBusinessEntity
|
|
|
-{
|
|
|
+public class CenterdataTBaidumap extends BaseBusinessEntity {
|
|
|
+
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** $column.columnComment */
|
|
|
+ /**
|
|
|
+ * $column.columnComment
|
|
|
+ */
|
|
|
private String id;
|
|
|
|
|
|
- /** 引用号 */
|
|
|
+ /**
|
|
|
+ * 引用号
|
|
|
+ */
|
|
|
@Excel(name = "引用号")
|
|
|
private String code;
|
|
|
|
|
|
- /** 对应业务描述 */
|
|
|
+ /**
|
|
|
+ * 对应业务描述
|
|
|
+ */
|
|
|
@Excel(name = "对应业务描述")
|
|
|
private String content;
|
|
|
|
|
|
- /** 对应业务标识 */
|
|
|
+ /**
|
|
|
+ * 对应业务标识
|
|
|
+ */
|
|
|
@Excel(name = "对应业务标识")
|
|
|
private String business;
|
|
|
|
|
|
- /** 超图地址 */
|
|
|
+ /**
|
|
|
+ * 超图地址
|
|
|
+ */
|
|
|
@Excel(name = "超图地址")
|
|
|
private String url;
|
|
|
|
|
|
- /** 数据集地址 */
|
|
|
+ /**
|
|
|
+ * 数据集地址
|
|
|
+ */
|
|
|
@Excel(name = "数据集地址")
|
|
|
private String dataset;
|
|
|
|
|
|
- /** 中心点经度 */
|
|
|
+ /**
|
|
|
+ * 中心点经度
|
|
|
+ */
|
|
|
@Excel(name = "中心点经度")
|
|
|
private String centerLng;
|
|
|
|
|
|
- /** 中心点纬度 */
|
|
|
+ /**
|
|
|
+ * 中心点纬度
|
|
|
+ */
|
|
|
@Excel(name = "中心点纬度")
|
|
|
private String centerLat;
|
|
|
|
|
|
- /** 默认比例 */
|
|
|
+ /**
|
|
|
+ * 默认比例
|
|
|
+ */
|
|
|
@Excel(name = "默认比例")
|
|
|
private Long zoom;
|
|
|
|
|
|
- /** 最大比例 */
|
|
|
+ /**
|
|
|
+ * 最大比例
|
|
|
+ */
|
|
|
@Excel(name = "最大比例")
|
|
|
private Long maxZoom;
|
|
|
|
|
|
- /** 最小比例 */
|
|
|
+ /**
|
|
|
+ * 最小比例
|
|
|
+ */
|
|
|
@Excel(name = "最小比例")
|
|
|
private Long minZoom;
|
|
|
|
|
|
- /** 启用滚轮放大缩小,默认禁用 0:否 1:是 */
|
|
|
+ /**
|
|
|
+ * 启用滚轮放大缩小,默认禁用 0:否 1:是
|
|
|
+ */
|
|
|
@Excel(name = "启用滚轮放大缩小,默认禁用 0:否 1:是")
|
|
|
private Integer enableScrollWheelZoom;
|
|
|
|
|
|
- /** 启用双击放大,默认启用 0:否 1:是 */
|
|
|
+ /**
|
|
|
+ * 启用双击放大,默认启用 0:否 1:是
|
|
|
+ */
|
|
|
@Excel(name = "启用双击放大,默认启用 0:否 1:是")
|
|
|
private Integer enableDoubleClickZoom;
|
|
|
|
|
|
- /** 启用键盘操作,默认禁用 0:否 1:是 */
|
|
|
+ /**
|
|
|
+ * 启用键盘操作,默认禁用 0:否 1:是
|
|
|
+ */
|
|
|
@Excel(name = "启用键盘操作,默认禁用 0:否 1:是")
|
|
|
private Integer enableKeyboard;
|
|
|
|
|
|
- /** 启用自动适应容器尺寸变化,默认启用 0:否 1:是 */
|
|
|
+ /**
|
|
|
+ * 启用自动适应容器尺寸变化,默认启用 0:否 1:是
|
|
|
+ */
|
|
|
@Excel(name = "启用自动适应容器尺寸变化,默认启用 0:否 1:是")
|
|
|
private Integer enableAutoResize;
|
|
|
|
|
|
- /** 数据状态(1-可用 2-不可用 ) */
|
|
|
+ /**
|
|
|
+ * 数据状态(1-可用 2-不可用 )
|
|
|
+ */
|
|
|
@Excel(name = "数据状态(1-可用 2-不可用 )")
|
|
|
private String dataStatus;
|
|
|
|
|
|
- /** 数据所属部门(政或党的id) */
|
|
|
- @Excel(name = "数据所属部门(政或党的id)")
|
|
|
- private Long dataDeptId;
|
|
|
-
|
|
|
- public void setId(String id)
|
|
|
- {
|
|
|
+ public void setId(String id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public String getId()
|
|
|
- {
|
|
|
+ public String getId() {
|
|
|
return id;
|
|
|
}
|
|
|
- public void setCode(String code)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
- public String getCode()
|
|
|
- {
|
|
|
+ public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
- public void setContent(String content)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setContent(String content) {
|
|
|
this.content = content;
|
|
|
}
|
|
|
|
|
|
- public String getContent()
|
|
|
- {
|
|
|
+ public String getContent() {
|
|
|
return content;
|
|
|
}
|
|
|
- public void setBusiness(String business)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setBusiness(String business) {
|
|
|
this.business = business;
|
|
|
}
|
|
|
|
|
|
- public String getBusiness()
|
|
|
- {
|
|
|
+ public String getBusiness() {
|
|
|
return business;
|
|
|
}
|
|
|
- public void setUrl(String url)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setUrl(String url) {
|
|
|
this.url = url;
|
|
|
}
|
|
|
|
|
|
- public String getUrl()
|
|
|
- {
|
|
|
+ public String getUrl() {
|
|
|
return url;
|
|
|
}
|
|
|
- public void setDataset(String dataset)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDataset(String dataset) {
|
|
|
this.dataset = dataset;
|
|
|
}
|
|
|
|
|
|
- public String getDataset()
|
|
|
- {
|
|
|
+ public String getDataset() {
|
|
|
return dataset;
|
|
|
}
|
|
|
- public void setCenterLng(String centerLng)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCenterLng(String centerLng) {
|
|
|
this.centerLng = centerLng;
|
|
|
}
|
|
|
|
|
|
- public String getCenterLng()
|
|
|
- {
|
|
|
+ public String getCenterLng() {
|
|
|
return centerLng;
|
|
|
}
|
|
|
- public void setCenterLat(String centerLat)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCenterLat(String centerLat) {
|
|
|
this.centerLat = centerLat;
|
|
|
}
|
|
|
|
|
|
- public String getCenterLat()
|
|
|
- {
|
|
|
+ public String getCenterLat() {
|
|
|
return centerLat;
|
|
|
}
|
|
|
- public void setZoom(Long zoom)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setZoom(Long zoom) {
|
|
|
this.zoom = zoom;
|
|
|
}
|
|
|
|
|
|
- public Long getZoom()
|
|
|
- {
|
|
|
+ public Long getZoom() {
|
|
|
return zoom;
|
|
|
}
|
|
|
- public void setMaxZoom(Long maxZoom)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setMaxZoom(Long maxZoom) {
|
|
|
this.maxZoom = maxZoom;
|
|
|
}
|
|
|
|
|
|
- public Long getMaxZoom()
|
|
|
- {
|
|
|
+ public Long getMaxZoom() {
|
|
|
return maxZoom;
|
|
|
}
|
|
|
- public void setMinZoom(Long minZoom)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setMinZoom(Long minZoom) {
|
|
|
this.minZoom = minZoom;
|
|
|
}
|
|
|
|
|
|
- public Long getMinZoom()
|
|
|
- {
|
|
|
+ public Long getMinZoom() {
|
|
|
return minZoom;
|
|
|
}
|
|
|
- public void setEnableScrollWheelZoom(Integer enableScrollWheelZoom)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setEnableScrollWheelZoom(Integer enableScrollWheelZoom) {
|
|
|
this.enableScrollWheelZoom = enableScrollWheelZoom;
|
|
|
}
|
|
|
|
|
|
- public Integer getEnableScrollWheelZoom()
|
|
|
- {
|
|
|
+ public Integer getEnableScrollWheelZoom() {
|
|
|
return enableScrollWheelZoom;
|
|
|
}
|
|
|
- public void setEnableDoubleClickZoom(Integer enableDoubleClickZoom)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setEnableDoubleClickZoom(Integer enableDoubleClickZoom) {
|
|
|
this.enableDoubleClickZoom = enableDoubleClickZoom;
|
|
|
}
|
|
|
|
|
|
- public Integer getEnableDoubleClickZoom()
|
|
|
- {
|
|
|
+ public Integer getEnableDoubleClickZoom() {
|
|
|
return enableDoubleClickZoom;
|
|
|
}
|
|
|
- public void setEnableKeyboard(Integer enableKeyboard)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setEnableKeyboard(Integer enableKeyboard) {
|
|
|
this.enableKeyboard = enableKeyboard;
|
|
|
}
|
|
|
|
|
|
- public Integer getEnableKeyboard()
|
|
|
- {
|
|
|
+ public Integer getEnableKeyboard() {
|
|
|
return enableKeyboard;
|
|
|
}
|
|
|
- public void setEnableAutoResize(Integer enableAutoResize)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setEnableAutoResize(Integer enableAutoResize) {
|
|
|
this.enableAutoResize = enableAutoResize;
|
|
|
}
|
|
|
|
|
|
- public Integer getEnableAutoResize()
|
|
|
- {
|
|
|
+ public Integer getEnableAutoResize() {
|
|
|
return enableAutoResize;
|
|
|
}
|
|
|
- public void setDataStatus(String dataStatus)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDataStatus(String dataStatus) {
|
|
|
this.dataStatus = dataStatus;
|
|
|
}
|
|
|
|
|
|
- public String getDataStatus()
|
|
|
- {
|
|
|
+ public String getDataStatus() {
|
|
|
return dataStatus;
|
|
|
}
|
|
|
- public void setDataDeptId(Long dataDeptId)
|
|
|
- {
|
|
|
- this.dataDeptId = dataDeptId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getDataDeptId()
|
|
|
- {
|
|
|
- return dataDeptId;
|
|
|
- }
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("code", getCode())
|
|
|
- .append("content", getContent())
|
|
|
- .append("business", getBusiness())
|
|
|
- .append("url", getUrl())
|
|
|
- .append("dataset", getDataset())
|
|
|
- .append("centerLng", getCenterLng())
|
|
|
- .append("centerLat", getCenterLat())
|
|
|
- .append("zoom", getZoom())
|
|
|
- .append("maxZoom", getMaxZoom())
|
|
|
- .append("minZoom", getMinZoom())
|
|
|
- .append("enableScrollWheelZoom", getEnableScrollWheelZoom())
|
|
|
- .append("enableDoubleClickZoom", getEnableDoubleClickZoom())
|
|
|
- .append("enableKeyboard", getEnableKeyboard())
|
|
|
- .append("enableAutoResize", getEnableAutoResize())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("dataStatus", getDataStatus())
|
|
|
- .append("dataDeptId", getDataDeptId())
|
|
|
- .toString();
|
|
|
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ .append("id", getId())
|
|
|
+ .append("code", getCode())
|
|
|
+ .append("content", getContent())
|
|
|
+ .append("business", getBusiness())
|
|
|
+ .append("url", getUrl())
|
|
|
+ .append("dataset", getDataset())
|
|
|
+ .append("centerLng", getCenterLng())
|
|
|
+ .append("centerLat", getCenterLat())
|
|
|
+ .append("zoom", getZoom())
|
|
|
+ .append("maxZoom", getMaxZoom())
|
|
|
+ .append("minZoom", getMinZoom())
|
|
|
+ .append("enableScrollWheelZoom", getEnableScrollWheelZoom())
|
|
|
+ .append("enableDoubleClickZoom", getEnableDoubleClickZoom())
|
|
|
+ .append("enableKeyboard", getEnableKeyboard())
|
|
|
+ .append("enableAutoResize", getEnableAutoResize())
|
|
|
+ .append("createBy", getCreateBy())
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
+ .append("updateBy", getUpdateBy())
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
+ .append("dataStatus", getDataStatus())
|
|
|
+ .append("dataDeptId", getDataDeptId())
|
|
|
+ .toString();
|
|
|
}
|
|
|
}
|