ThingInfo.java 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. package com.izouma.awesomeadmin.model;
  2. import java.util.*;
  3. import com.fasterxml.jackson.annotation.JsonAutoDetect;
  4. import com.fasterxml.jackson.annotation.JsonInclude;
  5. @JsonAutoDetect
  6. @JsonInclude(JsonInclude.Include.NON_NULL)
  7. public class ThingInfo {
  8. private Integer id;
  9. private String delFlag;
  10. private Date updateTime;
  11. private String updateUser;
  12. private Date createTime;
  13. private String createUser;
  14. private String power;
  15. private String landmarkId;
  16. private String thingName;
  17. private String thingType;
  18. private String rankLevel;
  19. private String allowNavigate;
  20. private String remark;
  21. private String icon;
  22. private String keyword;
  23. private String image;
  24. private String textIntroduction;
  25. private String showDistance;
  26. private String templateId;
  27. private String frontLevelId;
  28. private String cityId;
  29. private String areaId;
  30. private String mapX;
  31. private String mapY;
  32. private String mapIndex;
  33. /**
  34. * 朝向
  35. */
  36. private String orientation;
  37. private String idStr;
  38. private String searchKey;
  39. /**
  40. * and,test_name,like,value;or,remark,=,123
  41. */
  42. private String advancedQuery;
  43. /**
  44. * column_name_,desc_;column_name_,asc
  45. */
  46. private String orderByStr;
  47. private AimGroupInfo aimGroupInfo;
  48. public Integer getId() {
  49. return this.id;
  50. }
  51. public void setId(Integer id) {
  52. this.id = id;
  53. }
  54. public String getDelFlag() {
  55. return this.delFlag;
  56. }
  57. public void setDelFlag(String delFlag) {
  58. this.delFlag = delFlag;
  59. }
  60. public Date getUpdateTime() {
  61. return this.updateTime;
  62. }
  63. public void setUpdateTime(Date updateTime) {
  64. this.updateTime = updateTime;
  65. }
  66. public String getUpdateUser() {
  67. return this.updateUser;
  68. }
  69. public void setUpdateUser(String updateUser) {
  70. this.updateUser = updateUser;
  71. }
  72. public Date getCreateTime() {
  73. return this.createTime;
  74. }
  75. public void setCreateTime(Date createTime) {
  76. this.createTime = createTime;
  77. }
  78. public String getCreateUser() {
  79. return this.createUser;
  80. }
  81. public void setCreateUser(String createUser) {
  82. this.createUser = createUser;
  83. }
  84. public String getPower() {
  85. return this.power;
  86. }
  87. public void setPower(String power) {
  88. this.power = power;
  89. }
  90. public String getLandmarkId() {
  91. return this.landmarkId;
  92. }
  93. public void setLandmarkId(String landmarkId) {
  94. this.landmarkId = landmarkId;
  95. }
  96. public String getThingName() {
  97. return this.thingName;
  98. }
  99. public void setThingName(String thingName) {
  100. this.thingName = thingName;
  101. }
  102. public String getThingType() {
  103. return this.thingType;
  104. }
  105. public void setThingType(String thingType) {
  106. this.thingType = thingType;
  107. }
  108. public String getRankLevel() {
  109. return this.rankLevel;
  110. }
  111. public void setRankLevel(String rankLevel) {
  112. this.rankLevel = rankLevel;
  113. }
  114. public String getAllowNavigate() {
  115. return this.allowNavigate;
  116. }
  117. public void setAllowNavigate(String allowNavigate) {
  118. this.allowNavigate = allowNavigate;
  119. }
  120. public String getRemark() {
  121. return this.remark;
  122. }
  123. public void setRemark(String remark) {
  124. this.remark = remark;
  125. }
  126. public String getIcon() {
  127. return this.icon;
  128. }
  129. public void setIcon(String icon) {
  130. this.icon = icon;
  131. }
  132. public String getKeyword() {
  133. return this.keyword;
  134. }
  135. public void setKeyword(String keyword) {
  136. this.keyword = keyword;
  137. }
  138. public String getImage() {
  139. return this.image;
  140. }
  141. public void setImage(String image) {
  142. this.image = image;
  143. }
  144. public String getTextIntroduction() {
  145. return this.textIntroduction;
  146. }
  147. public void setTextIntroduction(String textIntroduction) {
  148. this.textIntroduction = textIntroduction;
  149. }
  150. public String getShowDistance() {
  151. return this.showDistance;
  152. }
  153. public void setShowDistance(String showDistance) {
  154. this.showDistance = showDistance;
  155. }
  156. public String getTemplateId() {
  157. return this.templateId;
  158. }
  159. public void setTemplateId(String templateId) {
  160. this.templateId = templateId;
  161. }
  162. public String getFrontLevelId() {
  163. return this.frontLevelId;
  164. }
  165. public void setFrontLevelId(String frontLevelId) {
  166. this.frontLevelId = frontLevelId;
  167. }
  168. public String getCityId() {
  169. return this.cityId;
  170. }
  171. public void setCityId(String cityId) {
  172. this.cityId = cityId;
  173. }
  174. public String getAreaId() {
  175. return this.areaId;
  176. }
  177. public void setAreaId(String areaId) {
  178. this.areaId = areaId;
  179. }
  180. public String getMapX() {
  181. return this.mapX;
  182. }
  183. public void setMapX(String mapX) {
  184. this.mapX = mapX;
  185. }
  186. public String getMapY() {
  187. return this.mapY;
  188. }
  189. public void setMapY(String mapY) {
  190. this.mapY = mapY;
  191. }
  192. public String getMapIndex() {
  193. return this.mapIndex;
  194. }
  195. public void setMapIndex(String mapIndex) {
  196. this.mapIndex = mapIndex;
  197. }
  198. public String getSearchKey() {
  199. return searchKey;
  200. }
  201. public void setSearchKey(String searchKey) {
  202. this.searchKey = searchKey;
  203. }
  204. public String getAdvancedQuery() {
  205. return advancedQuery;
  206. }
  207. public void setAdvancedQuery(String advancedQuery) {
  208. this.advancedQuery = advancedQuery;
  209. }
  210. public String getOrderByStr() {
  211. return orderByStr;
  212. }
  213. public void setOrderByStr(String orderByStr) {
  214. this.orderByStr = orderByStr;
  215. }
  216. public String getIdStr() {
  217. return idStr;
  218. }
  219. public void setIdStr(String idStr) {
  220. this.idStr = idStr;
  221. }
  222. public AimGroupInfo getAimGroupInfo() {
  223. return aimGroupInfo;
  224. }
  225. public void setAimGroupInfo(AimGroupInfo aimGroupInfo) {
  226. this.aimGroupInfo = aimGroupInfo;
  227. }
  228. public String getOrientation() {
  229. return orientation;
  230. }
  231. public void setOrientation(String orientation) {
  232. this.orientation = orientation;
  233. }
  234. }