LogWs.java 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. package com.huimv.log.dataobject;
  2. import com.huimv.xt.dataobject.BaseDO;
  3. import java.util.Date;
  4. public class LogWs extends BaseDO {
  5. /**
  6. * This field was generated by Apache iBATIS ibator.
  7. * This field corresponds to the database column log_ws.ID
  8. *
  9. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  10. */
  11. private Integer id;
  12. /**
  13. * This field was generated by Apache iBATIS ibator.
  14. * This field corresponds to the database column log_ws.JQID
  15. *
  16. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  17. */
  18. private String jqid;
  19. /**
  20. * This field was generated by Apache iBATIS ibator.
  21. * This field corresponds to the database column log_ws.CMD
  22. *
  23. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  24. */
  25. private String cmd;
  26. /**
  27. * This field was generated by Apache iBATIS ibator.
  28. * This field corresponds to the database column log_ws.PARAM
  29. *
  30. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  31. */
  32. private String param;
  33. /**
  34. * This field was generated by Apache iBATIS ibator.
  35. * This field corresponds to the database column log_ws.CODE
  36. *
  37. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  38. */
  39. private String code;
  40. /**
  41. * This field was generated by Apache iBATIS ibator.
  42. * This field corresponds to the database column log_ws.MESSAGE
  43. *
  44. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  45. */
  46. private String message;
  47. /**
  48. * This field was generated by Apache iBATIS ibator.
  49. * This field corresponds to the database column log_ws.STRJSON
  50. *
  51. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  52. */
  53. private String strjson;
  54. /**
  55. * This field was generated by Apache iBATIS ibator.
  56. * This field corresponds to the database column log_ws.XGSJ
  57. *
  58. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  59. */
  60. private Date xgsj;
  61. /**
  62. * This field was generated by Apache iBATIS ibator.
  63. * This field corresponds to the database column log_ws.YXSJ
  64. *
  65. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  66. */
  67. private String yxsj;
  68. /**
  69. * This field was generated by Apache iBATIS ibator.
  70. * This field corresponds to the database column log_ws.TYPE
  71. *
  72. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  73. */
  74. private String type;
  75. /**
  76. * This method was generated by Apache iBATIS ibator.
  77. * This method returns the value of the database column log_ws.ID
  78. *
  79. * @return the value of log_ws.ID
  80. *
  81. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  82. */
  83. public Integer getId() {
  84. return id;
  85. }
  86. /**
  87. * This method was generated by Apache iBATIS ibator.
  88. * This method sets the value of the database column log_ws.ID
  89. *
  90. * @param id the value for log_ws.ID
  91. *
  92. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  93. */
  94. public void setId(Integer id) {
  95. this.id = id;
  96. }
  97. /**
  98. * This method was generated by Apache iBATIS ibator.
  99. * This method returns the value of the database column log_ws.JQID
  100. *
  101. * @return the value of log_ws.JQID
  102. *
  103. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  104. */
  105. public String getJqid() {
  106. return jqid;
  107. }
  108. /**
  109. * This method was generated by Apache iBATIS ibator.
  110. * This method sets the value of the database column log_ws.JQID
  111. *
  112. * @param jqid the value for log_ws.JQID
  113. *
  114. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  115. */
  116. public void setJqid(String jqid) {
  117. this.jqid = jqid == null ? null : jqid.trim();
  118. }
  119. /**
  120. * This method was generated by Apache iBATIS ibator.
  121. * This method returns the value of the database column log_ws.CMD
  122. *
  123. * @return the value of log_ws.CMD
  124. *
  125. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  126. */
  127. public String getCmd() {
  128. return cmd;
  129. }
  130. /**
  131. * This method was generated by Apache iBATIS ibator.
  132. * This method sets the value of the database column log_ws.CMD
  133. *
  134. * @param cmd the value for log_ws.CMD
  135. *
  136. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  137. */
  138. public void setCmd(String cmd) {
  139. this.cmd = cmd == null ? null : cmd.trim();
  140. }
  141. /**
  142. * This method was generated by Apache iBATIS ibator.
  143. * This method returns the value of the database column log_ws.PARAM
  144. *
  145. * @return the value of log_ws.PARAM
  146. *
  147. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  148. */
  149. public String getParam() {
  150. return param;
  151. }
  152. /**
  153. * This method was generated by Apache iBATIS ibator.
  154. * This method sets the value of the database column log_ws.PARAM
  155. *
  156. * @param param the value for log_ws.PARAM
  157. *
  158. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  159. */
  160. public void setParam(String param) {
  161. this.param = param == null ? null : param.trim();
  162. }
  163. /**
  164. * This method was generated by Apache iBATIS ibator.
  165. * This method returns the value of the database column log_ws.CODE
  166. *
  167. * @return the value of log_ws.CODE
  168. *
  169. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  170. */
  171. public String getCode() {
  172. return code;
  173. }
  174. /**
  175. * This method was generated by Apache iBATIS ibator.
  176. * This method sets the value of the database column log_ws.CODE
  177. *
  178. * @param code the value for log_ws.CODE
  179. *
  180. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  181. */
  182. public void setCode(String code) {
  183. this.code = code == null ? null : code.trim();
  184. }
  185. /**
  186. * This method was generated by Apache iBATIS ibator.
  187. * This method returns the value of the database column log_ws.MESSAGE
  188. *
  189. * @return the value of log_ws.MESSAGE
  190. *
  191. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  192. */
  193. public String getMessage() {
  194. return message;
  195. }
  196. /**
  197. * This method was generated by Apache iBATIS ibator.
  198. * This method sets the value of the database column log_ws.MESSAGE
  199. *
  200. * @param message the value for log_ws.MESSAGE
  201. *
  202. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  203. */
  204. public void setMessage(String message) {
  205. this.message = message == null ? null : message.trim();
  206. }
  207. /**
  208. * This method was generated by Apache iBATIS ibator.
  209. * This method returns the value of the database column log_ws.STRJSON
  210. *
  211. * @return the value of log_ws.STRJSON
  212. *
  213. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  214. */
  215. public String getStrjson() {
  216. return strjson;
  217. }
  218. /**
  219. * This method was generated by Apache iBATIS ibator.
  220. * This method sets the value of the database column log_ws.STRJSON
  221. *
  222. * @param strjson the value for log_ws.STRJSON
  223. *
  224. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  225. */
  226. public void setStrjson(String strjson) {
  227. this.strjson = strjson == null ? null : strjson.trim();
  228. }
  229. /**
  230. * This method was generated by Apache iBATIS ibator.
  231. * This method returns the value of the database column log_ws.XGSJ
  232. *
  233. * @return the value of log_ws.XGSJ
  234. *
  235. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  236. */
  237. public Date getXgsj() {
  238. return xgsj;
  239. }
  240. /**
  241. * This method was generated by Apache iBATIS ibator.
  242. * This method sets the value of the database column log_ws.XGSJ
  243. *
  244. * @param xgsj the value for log_ws.XGSJ
  245. *
  246. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  247. */
  248. public void setXgsj(Date xgsj) {
  249. this.xgsj = xgsj;
  250. }
  251. /**
  252. * This method was generated by Apache iBATIS ibator.
  253. * This method returns the value of the database column log_ws.YXSJ
  254. *
  255. * @return the value of log_ws.YXSJ
  256. *
  257. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  258. */
  259. public String getYxsj() {
  260. return yxsj;
  261. }
  262. /**
  263. * This method was generated by Apache iBATIS ibator.
  264. * This method sets the value of the database column log_ws.YXSJ
  265. *
  266. * @param yxsj the value for log_ws.YXSJ
  267. *
  268. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  269. */
  270. public void setYxsj(String yxsj) {
  271. this.yxsj = yxsj == null ? null : yxsj.trim();
  272. }
  273. /**
  274. * This method was generated by Apache iBATIS ibator.
  275. * This method returns the value of the database column log_ws.TYPE
  276. *
  277. * @return the value of log_ws.TYPE
  278. *
  279. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  280. */
  281. public String getType() {
  282. return type;
  283. }
  284. /**
  285. * This method was generated by Apache iBATIS ibator.
  286. * This method sets the value of the database column log_ws.TYPE
  287. *
  288. * @param type the value for log_ws.TYPE
  289. *
  290. * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016
  291. */
  292. public void setType(String type) {
  293. this.type = type == null ? null : type.trim();
  294. }
  295. }