|
|
@@ -1,13 +1,14 @@
|
|
|
package com.izouma.awesomeadmin.model;
|
|
|
|
|
|
import java.util.*;
|
|
|
+
|
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
|
|
|
|
|
|
@JsonAutoDetect
|
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
-public class LandMark{
|
|
|
+public class LandMark {
|
|
|
private Integer id;
|
|
|
private String delFlag;
|
|
|
private Date updateTime;
|
|
|
@@ -15,7 +16,7 @@ public class LandMark{
|
|
|
private Date createTime;
|
|
|
private String createUser;
|
|
|
private String mapName;
|
|
|
- private Integer ownedCotyId;
|
|
|
+ private Integer ownedCityId;
|
|
|
private String mapSprite;
|
|
|
private String logeSprite;
|
|
|
private String openDescribe;
|
|
|
@@ -36,241 +37,307 @@ public class LandMark{
|
|
|
private String remark3;
|
|
|
private String frontLevelId;
|
|
|
|
|
|
-private String idStr;
|
|
|
+ private VuforiaImageGroup vuforiaImageGroup;
|
|
|
+
|
|
|
+ private List<VuforiaImageInfo> vuforiaImageInfoList;
|
|
|
+
|
|
|
+ private List<AimPlaceContent> aimPlaceContentList;
|
|
|
+
|
|
|
+ private List<AimPlacePosition> aimPlacePositionList;
|
|
|
|
|
|
-private String searchKey;
|
|
|
|
|
|
-/**
|
|
|
-* and,test_name,like,value;or,remark,=,123
|
|
|
-*/
|
|
|
-private String advancedQuery;
|
|
|
+ private String idStr;
|
|
|
|
|
|
-/**
|
|
|
-* column_name_,desc_;column_name_,asc
|
|
|
-*/
|
|
|
-private String orderByStr;
|
|
|
+ private String searchKey;
|
|
|
|
|
|
- public Integer getId(){
|
|
|
+ /**
|
|
|
+ * and,test_name,like,value;or,remark,=,123
|
|
|
+ */
|
|
|
+ private String advancedQuery;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * column_name_,desc_;column_name_,asc
|
|
|
+ */
|
|
|
+ private String orderByStr;
|
|
|
+
|
|
|
+ public Integer getId() {
|
|
|
return this.id;
|
|
|
}
|
|
|
|
|
|
- public void setId(Integer id){
|
|
|
+ public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
- public String getDelFlag(){
|
|
|
+
|
|
|
+ public String getDelFlag() {
|
|
|
return this.delFlag;
|
|
|
}
|
|
|
|
|
|
- public void setDelFlag(String delFlag){
|
|
|
+ public void setDelFlag(String delFlag) {
|
|
|
this.delFlag = delFlag;
|
|
|
}
|
|
|
- public Date getUpdateTime(){
|
|
|
+
|
|
|
+ public Date getUpdateTime() {
|
|
|
return this.updateTime;
|
|
|
}
|
|
|
|
|
|
- public void setUpdateTime(Date updateTime){
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
- public String getUpdateUser(){
|
|
|
+
|
|
|
+ public String getUpdateUser() {
|
|
|
return this.updateUser;
|
|
|
}
|
|
|
|
|
|
- public void setUpdateUser(String updateUser){
|
|
|
+ public void setUpdateUser(String updateUser) {
|
|
|
this.updateUser = updateUser;
|
|
|
}
|
|
|
- public Date getCreateTime(){
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
return this.createTime;
|
|
|
}
|
|
|
|
|
|
- public void setCreateTime(Date createTime){
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
- public String getCreateUser(){
|
|
|
+
|
|
|
+ public String getCreateUser() {
|
|
|
return this.createUser;
|
|
|
}
|
|
|
|
|
|
- public void setCreateUser(String createUser){
|
|
|
+ public void setCreateUser(String createUser) {
|
|
|
this.createUser = createUser;
|
|
|
}
|
|
|
- public String getMapName(){
|
|
|
+
|
|
|
+ public String getMapName() {
|
|
|
return this.mapName;
|
|
|
}
|
|
|
|
|
|
- public void setMapName(String mapName){
|
|
|
+ public void setMapName(String mapName) {
|
|
|
this.mapName = mapName;
|
|
|
}
|
|
|
- public Integer getOwnedCotyId(){
|
|
|
- return this.ownedCotyId;
|
|
|
+
|
|
|
+ public Integer getOwnedCityId() {
|
|
|
+ return this.ownedCityId;
|
|
|
}
|
|
|
|
|
|
- public void setOwnedCotyId(Integer ownedCotyId){
|
|
|
- this.ownedCotyId = ownedCotyId;
|
|
|
+ public void setOwnedCityId(Integer ownedCityId) {
|
|
|
+ this.ownedCityId = ownedCityId;
|
|
|
}
|
|
|
- public String getMapSprite(){
|
|
|
+
|
|
|
+ public String getMapSprite() {
|
|
|
return this.mapSprite;
|
|
|
}
|
|
|
|
|
|
- public void setMapSprite(String mapSprite){
|
|
|
+ public void setMapSprite(String mapSprite) {
|
|
|
this.mapSprite = mapSprite;
|
|
|
}
|
|
|
- public String getLogeSprite(){
|
|
|
+
|
|
|
+ public String getLogeSprite() {
|
|
|
return this.logeSprite;
|
|
|
}
|
|
|
|
|
|
- public void setLogeSprite(String logeSprite){
|
|
|
+ public void setLogeSprite(String logeSprite) {
|
|
|
this.logeSprite = logeSprite;
|
|
|
}
|
|
|
- public String getOpenDescribe(){
|
|
|
+
|
|
|
+ public String getOpenDescribe() {
|
|
|
return this.openDescribe;
|
|
|
}
|
|
|
|
|
|
- public void setOpenDescribe(String openDescribe){
|
|
|
+ public void setOpenDescribe(String openDescribe) {
|
|
|
this.openDescribe = openDescribe;
|
|
|
}
|
|
|
- public String getMarkDescribe(){
|
|
|
+
|
|
|
+ public String getMarkDescribe() {
|
|
|
return this.markDescribe;
|
|
|
}
|
|
|
|
|
|
- public void setMarkDescribe(String markDescribe){
|
|
|
+ public void setMarkDescribe(String markDescribe) {
|
|
|
this.markDescribe = markDescribe;
|
|
|
}
|
|
|
- public String getAnchorImageGroupName(){
|
|
|
+
|
|
|
+ public String getAnchorImageGroupName() {
|
|
|
return this.anchorImageGroupName;
|
|
|
}
|
|
|
|
|
|
- public void setAnchorImageGroupName(String anchorImageGroupName){
|
|
|
+ public void setAnchorImageGroupName(String anchorImageGroupName) {
|
|
|
this.anchorImageGroupName = anchorImageGroupName;
|
|
|
}
|
|
|
- public Integer getDefaultMode(){
|
|
|
+
|
|
|
+ public Integer getDefaultMode() {
|
|
|
return this.defaultMode;
|
|
|
}
|
|
|
|
|
|
- public void setDefaultMode(Integer defaultMode){
|
|
|
+ public void setDefaultMode(Integer defaultMode) {
|
|
|
this.defaultMode = defaultMode;
|
|
|
}
|
|
|
- public Integer getVuforiaImageGroupId(){
|
|
|
+
|
|
|
+ public Integer getVuforiaImageGroupId() {
|
|
|
return this.vuforiaImageGroupId;
|
|
|
}
|
|
|
|
|
|
- public void setVuforiaImageGroupId(Integer vuforiaImageGroupId){
|
|
|
+ public void setVuforiaImageGroupId(Integer vuforiaImageGroupId) {
|
|
|
this.vuforiaImageGroupId = vuforiaImageGroupId;
|
|
|
}
|
|
|
- public String getVuforiaDataName(){
|
|
|
+
|
|
|
+ public String getVuforiaDataName() {
|
|
|
return this.vuforiaDataName;
|
|
|
}
|
|
|
|
|
|
- public void setVuforiaDataName(String vuforiaDataName){
|
|
|
+ public void setVuforiaDataName(String vuforiaDataName) {
|
|
|
this.vuforiaDataName = vuforiaDataName;
|
|
|
}
|
|
|
- public String getMapInfo(){
|
|
|
+
|
|
|
+ public String getMapInfo() {
|
|
|
return this.mapInfo;
|
|
|
}
|
|
|
|
|
|
- public void setMapInfo(String mapInfo){
|
|
|
+ public void setMapInfo(String mapInfo) {
|
|
|
this.mapInfo = mapInfo;
|
|
|
}
|
|
|
- public String getMapWidth(){
|
|
|
+
|
|
|
+ public String getMapWidth() {
|
|
|
return this.mapWidth;
|
|
|
}
|
|
|
|
|
|
- public void setMapWidth(String mapWidth){
|
|
|
+ public void setMapWidth(String mapWidth) {
|
|
|
this.mapWidth = mapWidth;
|
|
|
}
|
|
|
- public String getMapHeight(){
|
|
|
+
|
|
|
+ public String getMapHeight() {
|
|
|
return this.mapHeight;
|
|
|
}
|
|
|
|
|
|
- public void setMapHeight(String mapHeight){
|
|
|
+ public void setMapHeight(String mapHeight) {
|
|
|
this.mapHeight = mapHeight;
|
|
|
}
|
|
|
- public String getMapRate(){
|
|
|
+
|
|
|
+ public String getMapRate() {
|
|
|
return this.mapRate;
|
|
|
}
|
|
|
|
|
|
- public void setMapRate(String mapRate){
|
|
|
+ public void setMapRate(String mapRate) {
|
|
|
this.mapRate = mapRate;
|
|
|
}
|
|
|
- public String getShowInPanel(){
|
|
|
+
|
|
|
+ public String getShowInPanel() {
|
|
|
return this.showInPanel;
|
|
|
}
|
|
|
|
|
|
- public void setShowInPanel(String showInPanel){
|
|
|
+ public void setShowInPanel(String showInPanel) {
|
|
|
this.showInPanel = showInPanel;
|
|
|
}
|
|
|
- public String getLongitude(){
|
|
|
+
|
|
|
+ public String getLongitude() {
|
|
|
return this.longitude;
|
|
|
}
|
|
|
|
|
|
- public void setLongitude(String longitude){
|
|
|
+ public void setLongitude(String longitude) {
|
|
|
this.longitude = longitude;
|
|
|
}
|
|
|
- public String getLatitude(){
|
|
|
+
|
|
|
+ public String getLatitude() {
|
|
|
return this.latitude;
|
|
|
}
|
|
|
|
|
|
- public void setLatitude(String latitude){
|
|
|
+ public void setLatitude(String latitude) {
|
|
|
this.latitude = latitude;
|
|
|
}
|
|
|
- public String getRemark1(){
|
|
|
+
|
|
|
+ public String getRemark1() {
|
|
|
return this.remark1;
|
|
|
}
|
|
|
|
|
|
- public void setRemark1(String remark1){
|
|
|
+ public void setRemark1(String remark1) {
|
|
|
this.remark1 = remark1;
|
|
|
}
|
|
|
- public String getRemark2(){
|
|
|
+
|
|
|
+ public String getRemark2() {
|
|
|
return this.remark2;
|
|
|
}
|
|
|
|
|
|
- public void setRemark2(String remark2){
|
|
|
+ public void setRemark2(String remark2) {
|
|
|
this.remark2 = remark2;
|
|
|
}
|
|
|
- public String getRemark3(){
|
|
|
+
|
|
|
+ public String getRemark3() {
|
|
|
return this.remark3;
|
|
|
}
|
|
|
|
|
|
- public void setRemark3(String remark3){
|
|
|
+ public void setRemark3(String remark3) {
|
|
|
this.remark3 = remark3;
|
|
|
}
|
|
|
- public String getFrontLevelId(){
|
|
|
+
|
|
|
+ public String getFrontLevelId() {
|
|
|
return this.frontLevelId;
|
|
|
}
|
|
|
|
|
|
- public void setFrontLevelId(String frontLevelId){
|
|
|
+ public void setFrontLevelId(String frontLevelId) {
|
|
|
this.frontLevelId = frontLevelId;
|
|
|
}
|
|
|
|
|
|
-public String getSearchKey() {
|
|
|
- return searchKey;
|
|
|
-}
|
|
|
+ public String getSearchKey() {
|
|
|
+ return searchKey;
|
|
|
+ }
|
|
|
|
|
|
-public void setSearchKey(String searchKey) {
|
|
|
- this.searchKey = searchKey;
|
|
|
-}
|
|
|
+ public void setSearchKey(String searchKey) {
|
|
|
+ this.searchKey = searchKey;
|
|
|
+ }
|
|
|
|
|
|
-public String getAdvancedQuery() {
|
|
|
- return advancedQuery;
|
|
|
-}
|
|
|
+ public String getAdvancedQuery() {
|
|
|
+ return advancedQuery;
|
|
|
+ }
|
|
|
|
|
|
-public void setAdvancedQuery(String advancedQuery) {
|
|
|
- this.advancedQuery = advancedQuery;
|
|
|
-}
|
|
|
+ public void setAdvancedQuery(String advancedQuery) {
|
|
|
+ this.advancedQuery = advancedQuery;
|
|
|
+ }
|
|
|
|
|
|
-public String getOrderByStr() {
|
|
|
- return orderByStr;
|
|
|
-}
|
|
|
+ public String getOrderByStr() {
|
|
|
+ return orderByStr;
|
|
|
+ }
|
|
|
|
|
|
-public void setOrderByStr(String orderByStr) {
|
|
|
- this.orderByStr = orderByStr;
|
|
|
-}
|
|
|
+ public void setOrderByStr(String orderByStr) {
|
|
|
+ this.orderByStr = orderByStr;
|
|
|
+ }
|
|
|
|
|
|
-public String getIdStr() {
|
|
|
- return idStr;
|
|
|
-}
|
|
|
+ public String getIdStr() {
|
|
|
+ return idStr;
|
|
|
+ }
|
|
|
|
|
|
-public void setIdStr(String idStr) {
|
|
|
- this.idStr = idStr;
|
|
|
-}
|
|
|
+ public void setIdStr(String idStr) {
|
|
|
+ this.idStr = idStr;
|
|
|
+ }
|
|
|
|
|
|
+ public VuforiaImageGroup getVuforiaImageGroup() {
|
|
|
+ return vuforiaImageGroup;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVuforiaImageGroup(VuforiaImageGroup vuforiaImageGroup) {
|
|
|
+ this.vuforiaImageGroup = vuforiaImageGroup;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<VuforiaImageInfo> getVuforiaImageInfoList() {
|
|
|
+ return vuforiaImageInfoList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setVuforiaImageInfoList(List<VuforiaImageInfo> vuforiaImageInfoList) {
|
|
|
+ this.vuforiaImageInfoList = vuforiaImageInfoList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<AimPlaceContent> getAimPlaceContentList() {
|
|
|
+ return aimPlaceContentList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAimPlaceContentList(List<AimPlaceContent> aimPlaceContentList) {
|
|
|
+ this.aimPlaceContentList = aimPlaceContentList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<AimPlacePosition> getAimPlacePositionList() {
|
|
|
+ return aimPlacePositionList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAimPlacePositionList(List<AimPlacePosition> aimPlacePositionList) {
|
|
|
+ this.aimPlacePositionList = aimPlacePositionList;
|
|
|
+ }
|
|
|
}
|
|
|
|