| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- 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 ThingInfo {
- private Integer id;
- private String delFlag;
- private Date updateTime;
- private String updateUser;
- private Date createTime;
- private String createUser;
- private String power;
- private String landmarkId;
- private String thingName;
- private String thingType;
- private String rankLevel;
- private String allowNavigate;
- private String remark;
- private String icon;
- private String keyword;
- private String image;
- private String textIntroduction;
- private String showDistance;
- private String templateId;
- private String frontLevelId;
- private String cityId;
- private String areaId;
- private String mapX;
- private String mapY;
- private String mapIndex;
- /**
- * 朝向
- */
- private String orientation;
- private String idStr;
- private String searchKey;
- /**
- * and,test_name,like,value;or,remark,=,123
- */
- private String advancedQuery;
- /**
- * column_name_,desc_;column_name_,asc
- */
- private String orderByStr;
- private AimGroupInfo aimGroupInfo;
- public Integer getId() {
- return this.id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getDelFlag() {
- return this.delFlag;
- }
- public void setDelFlag(String delFlag) {
- this.delFlag = delFlag;
- }
- public Date getUpdateTime() {
- return this.updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public String getUpdateUser() {
- return this.updateUser;
- }
- public void setUpdateUser(String updateUser) {
- this.updateUser = updateUser;
- }
- public Date getCreateTime() {
- return this.createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getCreateUser() {
- return this.createUser;
- }
- public void setCreateUser(String createUser) {
- this.createUser = createUser;
- }
- public String getPower() {
- return this.power;
- }
- public void setPower(String power) {
- this.power = power;
- }
- public String getLandmarkId() {
- return this.landmarkId;
- }
- public void setLandmarkId(String landmarkId) {
- this.landmarkId = landmarkId;
- }
- public String getThingName() {
- return this.thingName;
- }
- public void setThingName(String thingName) {
- this.thingName = thingName;
- }
- public String getThingType() {
- return this.thingType;
- }
- public void setThingType(String thingType) {
- this.thingType = thingType;
- }
- public String getRankLevel() {
- return this.rankLevel;
- }
- public void setRankLevel(String rankLevel) {
- this.rankLevel = rankLevel;
- }
- public String getAllowNavigate() {
- return this.allowNavigate;
- }
- public void setAllowNavigate(String allowNavigate) {
- this.allowNavigate = allowNavigate;
- }
- public String getRemark() {
- return this.remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getIcon() {
- return this.icon;
- }
- public void setIcon(String icon) {
- this.icon = icon;
- }
- public String getKeyword() {
- return this.keyword;
- }
- public void setKeyword(String keyword) {
- this.keyword = keyword;
- }
- public String getImage() {
- return this.image;
- }
- public void setImage(String image) {
- this.image = image;
- }
- public String getTextIntroduction() {
- return this.textIntroduction;
- }
- public void setTextIntroduction(String textIntroduction) {
- this.textIntroduction = textIntroduction;
- }
- public String getShowDistance() {
- return this.showDistance;
- }
- public void setShowDistance(String showDistance) {
- this.showDistance = showDistance;
- }
- public String getTemplateId() {
- return this.templateId;
- }
- public void setTemplateId(String templateId) {
- this.templateId = templateId;
- }
- public String getFrontLevelId() {
- return this.frontLevelId;
- }
- public void setFrontLevelId(String frontLevelId) {
- this.frontLevelId = frontLevelId;
- }
- public String getCityId() {
- return this.cityId;
- }
- public void setCityId(String cityId) {
- this.cityId = cityId;
- }
- public String getAreaId() {
- return this.areaId;
- }
- public void setAreaId(String areaId) {
- this.areaId = areaId;
- }
- public String getMapX() {
- return this.mapX;
- }
- public void setMapX(String mapX) {
- this.mapX = mapX;
- }
- public String getMapY() {
- return this.mapY;
- }
- public void setMapY(String mapY) {
- this.mapY = mapY;
- }
- public String getMapIndex() {
- return this.mapIndex;
- }
- public void setMapIndex(String mapIndex) {
- this.mapIndex = mapIndex;
- }
- public String getSearchKey() {
- return searchKey;
- }
- public void setSearchKey(String searchKey) {
- this.searchKey = searchKey;
- }
- public String getAdvancedQuery() {
- return advancedQuery;
- }
- public void setAdvancedQuery(String advancedQuery) {
- this.advancedQuery = advancedQuery;
- }
- public String getOrderByStr() {
- return orderByStr;
- }
- public void setOrderByStr(String orderByStr) {
- this.orderByStr = orderByStr;
- }
- public String getIdStr() {
- return idStr;
- }
- public void setIdStr(String idStr) {
- this.idStr = idStr;
- }
- public AimGroupInfo getAimGroupInfo() {
- return aimGroupInfo;
- }
- public void setAimGroupInfo(AimGroupInfo aimGroupInfo) {
- this.aimGroupInfo = aimGroupInfo;
- }
- public String getOrientation() {
- return orientation;
- }
- public void setOrientation(String orientation) {
- this.orientation = orientation;
- }
- }
|