WsclAgps.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. package com.huimv.wscl.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. public class WsclAgps extends BaseDO {
  4. /**
  5. * This field was generated by Apache iBATIS ibator.
  6. * This field corresponds to the database column wscl_agps.ID
  7. *
  8. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  9. */
  10. private Integer id;
  11. /**
  12. * This field was generated by Apache iBATIS ibator.
  13. * This field corresponds to the database column wscl_agps.GID
  14. *
  15. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  16. */
  17. private String gid;
  18. /**
  19. * This field was generated by Apache iBATIS ibator.
  20. * This field corresponds to the database column wscl_agps.TIME
  21. *
  22. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  23. */
  24. private String time;
  25. /**
  26. * This field was generated by Apache iBATIS ibator.
  27. * This field corresponds to the database column wscl_agps.ICCID
  28. *
  29. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  30. */
  31. private String iccid;
  32. /**
  33. * This field was generated by Apache iBATIS ibator.
  34. * This field corresponds to the database column wscl_agps.IMEI
  35. *
  36. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  37. */
  38. private String imei;
  39. /**
  40. * This field was generated by Apache iBATIS ibator.
  41. * This field corresponds to the database column wscl_agps.RSSI
  42. *
  43. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  44. */
  45. private String rssi;
  46. /**
  47. * This field was generated by Apache iBATIS ibator.
  48. * This field corresponds to the database column wscl_agps.ACCESSSERVER
  49. *
  50. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  51. */
  52. private String accessserver;
  53. /**
  54. * This field was generated by Apache iBATIS ibator.
  55. * This field corresponds to the database column wscl_agps.MCC
  56. *
  57. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  58. */
  59. private String mcc;
  60. /**
  61. * This field was generated by Apache iBATIS ibator.
  62. * This field corresponds to the database column wscl_agps.MNC
  63. *
  64. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  65. */
  66. private String mnc;
  67. /**
  68. * This field was generated by Apache iBATIS ibator.
  69. * This field corresponds to the database column wscl_agps.CI
  70. *
  71. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  72. */
  73. private String ci;
  74. /**
  75. * This field was generated by Apache iBATIS ibator.
  76. * This field corresponds to the database column wscl_agps.LAC
  77. *
  78. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  79. */
  80. private String lac;
  81. /**
  82. * This field was generated by Apache iBATIS ibator.
  83. * This field corresponds to the database column wscl_agps.SIGNAL
  84. *
  85. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  86. */
  87. private String signal;
  88. /**
  89. * This method was generated by Apache iBATIS ibator.
  90. * This method returns the value of the database column wscl_agps.ID
  91. *
  92. * @return the value of wscl_agps.ID
  93. *
  94. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  95. */
  96. public Integer getId() {
  97. return id;
  98. }
  99. /**
  100. * This method was generated by Apache iBATIS ibator.
  101. * This method sets the value of the database column wscl_agps.ID
  102. *
  103. * @param id the value for wscl_agps.ID
  104. *
  105. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  106. */
  107. public void setId(Integer id) {
  108. this.id = id;
  109. }
  110. /**
  111. * This method was generated by Apache iBATIS ibator.
  112. * This method returns the value of the database column wscl_agps.GID
  113. *
  114. * @return the value of wscl_agps.GID
  115. *
  116. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  117. */
  118. public String getGid() {
  119. return gid;
  120. }
  121. /**
  122. * This method was generated by Apache iBATIS ibator.
  123. * This method sets the value of the database column wscl_agps.GID
  124. *
  125. * @param gid the value for wscl_agps.GID
  126. *
  127. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  128. */
  129. public void setGid(String gid) {
  130. this.gid = gid == null ? null : gid.trim();
  131. }
  132. /**
  133. * This method was generated by Apache iBATIS ibator.
  134. * This method returns the value of the database column wscl_agps.TIME
  135. *
  136. * @return the value of wscl_agps.TIME
  137. *
  138. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  139. */
  140. public String getTime() {
  141. return time;
  142. }
  143. /**
  144. * This method was generated by Apache iBATIS ibator.
  145. * This method sets the value of the database column wscl_agps.TIME
  146. *
  147. * @param time the value for wscl_agps.TIME
  148. *
  149. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  150. */
  151. public void setTime(String time) {
  152. this.time = time == null ? null : time.trim();
  153. }
  154. /**
  155. * This method was generated by Apache iBATIS ibator.
  156. * This method returns the value of the database column wscl_agps.ICCID
  157. *
  158. * @return the value of wscl_agps.ICCID
  159. *
  160. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  161. */
  162. public String getIccid() {
  163. return iccid;
  164. }
  165. /**
  166. * This method was generated by Apache iBATIS ibator.
  167. * This method sets the value of the database column wscl_agps.ICCID
  168. *
  169. * @param iccid the value for wscl_agps.ICCID
  170. *
  171. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  172. */
  173. public void setIccid(String iccid) {
  174. this.iccid = iccid == null ? null : iccid.trim();
  175. }
  176. /**
  177. * This method was generated by Apache iBATIS ibator.
  178. * This method returns the value of the database column wscl_agps.IMEI
  179. *
  180. * @return the value of wscl_agps.IMEI
  181. *
  182. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  183. */
  184. public String getImei() {
  185. return imei;
  186. }
  187. /**
  188. * This method was generated by Apache iBATIS ibator.
  189. * This method sets the value of the database column wscl_agps.IMEI
  190. *
  191. * @param imei the value for wscl_agps.IMEI
  192. *
  193. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  194. */
  195. public void setImei(String imei) {
  196. this.imei = imei == null ? null : imei.trim();
  197. }
  198. /**
  199. * This method was generated by Apache iBATIS ibator.
  200. * This method returns the value of the database column wscl_agps.RSSI
  201. *
  202. * @return the value of wscl_agps.RSSI
  203. *
  204. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  205. */
  206. public String getRssi() {
  207. return rssi;
  208. }
  209. /**
  210. * This method was generated by Apache iBATIS ibator.
  211. * This method sets the value of the database column wscl_agps.RSSI
  212. *
  213. * @param rssi the value for wscl_agps.RSSI
  214. *
  215. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  216. */
  217. public void setRssi(String rssi) {
  218. this.rssi = rssi == null ? null : rssi.trim();
  219. }
  220. /**
  221. * This method was generated by Apache iBATIS ibator.
  222. * This method returns the value of the database column wscl_agps.ACCESSSERVER
  223. *
  224. * @return the value of wscl_agps.ACCESSSERVER
  225. *
  226. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  227. */
  228. public String getAccessserver() {
  229. return accessserver;
  230. }
  231. /**
  232. * This method was generated by Apache iBATIS ibator.
  233. * This method sets the value of the database column wscl_agps.ACCESSSERVER
  234. *
  235. * @param accessserver the value for wscl_agps.ACCESSSERVER
  236. *
  237. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  238. */
  239. public void setAccessserver(String accessserver) {
  240. this.accessserver = accessserver == null ? null : accessserver.trim();
  241. }
  242. /**
  243. * This method was generated by Apache iBATIS ibator.
  244. * This method returns the value of the database column wscl_agps.MCC
  245. *
  246. * @return the value of wscl_agps.MCC
  247. *
  248. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  249. */
  250. public String getMcc() {
  251. return mcc;
  252. }
  253. /**
  254. * This method was generated by Apache iBATIS ibator.
  255. * This method sets the value of the database column wscl_agps.MCC
  256. *
  257. * @param mcc the value for wscl_agps.MCC
  258. *
  259. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  260. */
  261. public void setMcc(String mcc) {
  262. this.mcc = mcc == null ? null : mcc.trim();
  263. }
  264. /**
  265. * This method was generated by Apache iBATIS ibator.
  266. * This method returns the value of the database column wscl_agps.MNC
  267. *
  268. * @return the value of wscl_agps.MNC
  269. *
  270. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  271. */
  272. public String getMnc() {
  273. return mnc;
  274. }
  275. /**
  276. * This method was generated by Apache iBATIS ibator.
  277. * This method sets the value of the database column wscl_agps.MNC
  278. *
  279. * @param mnc the value for wscl_agps.MNC
  280. *
  281. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  282. */
  283. public void setMnc(String mnc) {
  284. this.mnc = mnc == null ? null : mnc.trim();
  285. }
  286. /**
  287. * This method was generated by Apache iBATIS ibator.
  288. * This method returns the value of the database column wscl_agps.CI
  289. *
  290. * @return the value of wscl_agps.CI
  291. *
  292. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  293. */
  294. public String getCi() {
  295. return ci;
  296. }
  297. /**
  298. * This method was generated by Apache iBATIS ibator.
  299. * This method sets the value of the database column wscl_agps.CI
  300. *
  301. * @param ci the value for wscl_agps.CI
  302. *
  303. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  304. */
  305. public void setCi(String ci) {
  306. this.ci = ci == null ? null : ci.trim();
  307. }
  308. /**
  309. * This method was generated by Apache iBATIS ibator.
  310. * This method returns the value of the database column wscl_agps.LAC
  311. *
  312. * @return the value of wscl_agps.LAC
  313. *
  314. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  315. */
  316. public String getLac() {
  317. return lac;
  318. }
  319. /**
  320. * This method was generated by Apache iBATIS ibator.
  321. * This method sets the value of the database column wscl_agps.LAC
  322. *
  323. * @param lac the value for wscl_agps.LAC
  324. *
  325. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  326. */
  327. public void setLac(String lac) {
  328. this.lac = lac == null ? null : lac.trim();
  329. }
  330. /**
  331. * This method was generated by Apache iBATIS ibator.
  332. * This method returns the value of the database column wscl_agps.SIGNAL
  333. *
  334. * @return the value of wscl_agps.SIGNAL
  335. *
  336. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  337. */
  338. public String getSignal() {
  339. return signal;
  340. }
  341. /**
  342. * This method was generated by Apache iBATIS ibator.
  343. * This method sets the value of the database column wscl_agps.SIGNAL
  344. *
  345. * @param signal the value for wscl_agps.SIGNAL
  346. *
  347. * @ibatorgenerated Mon Jul 29 16:26:24 CST 2019
  348. */
  349. public void setSignal(String signal) {
  350. this.signal = signal == null ? null : signal.trim();
  351. }
  352. }