DlogList.java 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. package id.co.hanoman.service.log;
  2. // Generated Oct 12, 2021 8:34:19 PM by Hibernate Tools 4.3.1.Final
  3. import java.util.Calendar;
  4. import java.util.Date;
  5. /**
  6. * DlogList generated by hbm2java
  7. */
  8. public class DlogList implements java.io.Serializable {
  9. private long id;
  10. private DlogMd typeDmd;
  11. private Calendar timestamp;
  12. private Calendar reqtimestamp;
  13. private String source;
  14. private String code;
  15. private String v_1;
  16. private String v_2;
  17. private String v_3;
  18. private String v_4;
  19. private String v_5;
  20. private String v_6;
  21. private String v_7;
  22. private String v_8;
  23. private String v_9;
  24. private String v_10;
  25. private String v_11;
  26. private String v_12;
  27. private String v_13;
  28. private String v_14;
  29. private String v_15;
  30. private String v_16;
  31. private String v_17;
  32. private String v_18;
  33. private String v_19;
  34. private String v_20;
  35. private String v_21;
  36. private String v_22;
  37. private String v_23;
  38. private String v_24;
  39. private String v_25;
  40. private String v_26;
  41. private String v_27;
  42. private String v_28;
  43. private String v_29;
  44. private String v_30;
  45. private String v_31;
  46. private String v_32;
  47. private String v_33;
  48. private String v_34;
  49. private String v_35;
  50. private String v_36;
  51. private String v_37;
  52. private String v_38;
  53. private String v_39;
  54. private String v_40;
  55. public DlogList() {
  56. }
  57. public DlogList(DlogMd typeDmd) {
  58. this.typeDmd = typeDmd;
  59. }
  60. public DlogList(DlogMd typeDmd, Calendar timestamp, Calendar reqtimestamp, String source, String code, String v_1, String v_2, String v_3, String v_4, String v_5, String v_6, String v_7, String v_8, String v_9, String v_10, String v_11, String v_12, String v_13, String v_14, String v_15, String v_16, String v_17, String v_18, String v_19, String v_20, String v_21, String v_22, String v_23, String v_24, String v_25, String v_26, String v_27, String v_28, String v_29, String v_30, String v_31, String v_32, String v_33, String v_34, String v_35, String v_36, String v_37, String v_38, String v_39, String v_40) {
  61. this.typeDmd = typeDmd;
  62. this.timestamp = timestamp;
  63. this.reqtimestamp = reqtimestamp;
  64. this.source = source;
  65. this.code = code;
  66. this.v_1 = v_1;
  67. this.v_2 = v_2;
  68. this.v_3 = v_3;
  69. this.v_4 = v_4;
  70. this.v_5 = v_5;
  71. this.v_6 = v_6;
  72. this.v_7 = v_7;
  73. this.v_8 = v_8;
  74. this.v_9 = v_9;
  75. this.v_10 = v_10;
  76. this.v_11 = v_11;
  77. this.v_12 = v_12;
  78. this.v_13 = v_13;
  79. this.v_14 = v_14;
  80. this.v_15 = v_15;
  81. this.v_16 = v_16;
  82. this.v_17 = v_17;
  83. this.v_18 = v_18;
  84. this.v_19 = v_19;
  85. this.v_20 = v_20;
  86. this.v_21 = v_21;
  87. this.v_22 = v_22;
  88. this.v_23 = v_23;
  89. this.v_24 = v_24;
  90. this.v_25 = v_25;
  91. this.v_26 = v_26;
  92. this.v_27 = v_27;
  93. this.v_28 = v_28;
  94. this.v_29 = v_29;
  95. this.v_30 = v_30;
  96. this.v_31 = v_31;
  97. this.v_32 = v_32;
  98. this.v_33 = v_33;
  99. this.v_34 = v_34;
  100. this.v_35 = v_35;
  101. this.v_36 = v_36;
  102. this.v_37 = v_37;
  103. this.v_38 = v_38;
  104. this.v_39 = v_39;
  105. this.v_40 = v_40;
  106. }
  107. public long getId() {
  108. return this.id;
  109. }
  110. public void setId(long id) {
  111. this.id = id;
  112. }
  113. public DlogMd getTypeDmd() {
  114. return this.typeDmd;
  115. }
  116. public void setTypeDmd(DlogMd typeDmd) {
  117. this.typeDmd = typeDmd;
  118. }
  119. public Calendar getTimestamp() {
  120. return timestamp;
  121. }
  122. public void setTimestamp(Calendar timestamp) {
  123. this.timestamp = timestamp;
  124. }
  125. public String getSource() {
  126. return this.source;
  127. }
  128. public void setSource(String source) {
  129. this.source = source;
  130. }
  131. public String getCode() {
  132. return this.code;
  133. }
  134. public void setCode(String code) {
  135. this.code = code;
  136. }
  137. public String getV_1() {
  138. return this.v_1;
  139. }
  140. public void setV_1(String v_1) {
  141. this.v_1 = v_1;
  142. }
  143. public String getV_2() {
  144. return this.v_2;
  145. }
  146. public void setV_2(String v_2) {
  147. this.v_2 = v_2;
  148. }
  149. public String getV_3() {
  150. return this.v_3;
  151. }
  152. public void setV_3(String v_3) {
  153. this.v_3 = v_3;
  154. }
  155. public String getV_4() {
  156. return this.v_4;
  157. }
  158. public void setV_4(String v_4) {
  159. this.v_4 = v_4;
  160. }
  161. public String getV_5() {
  162. return this.v_5;
  163. }
  164. public void setV_5(String v_5) {
  165. this.v_5 = v_5;
  166. }
  167. public String getV_6() {
  168. return this.v_6;
  169. }
  170. public void setV_6(String v_6) {
  171. this.v_6 = v_6;
  172. }
  173. public String getV_7() {
  174. return this.v_7;
  175. }
  176. public void setV_7(String v_7) {
  177. this.v_7 = v_7;
  178. }
  179. public String getV_8() {
  180. return this.v_8;
  181. }
  182. public void setV_8(String v_8) {
  183. this.v_8 = v_8;
  184. }
  185. public String getV_9() {
  186. return this.v_9;
  187. }
  188. public void setV_9(String v_9) {
  189. this.v_9 = v_9;
  190. }
  191. public String getV_10() {
  192. return this.v_10;
  193. }
  194. public void setV_10(String v_10) {
  195. this.v_10 = v_10;
  196. }
  197. public String getV_11() {
  198. return this.v_11;
  199. }
  200. public void setV_11(String v_11) {
  201. this.v_11 = v_11;
  202. }
  203. public String getV_12() {
  204. return this.v_12;
  205. }
  206. public void setV_12(String v_12) {
  207. this.v_12 = v_12;
  208. }
  209. public String getV_13() {
  210. return this.v_13;
  211. }
  212. public void setV_13(String v_13) {
  213. this.v_13 = v_13;
  214. }
  215. public String getV_14() {
  216. return this.v_14;
  217. }
  218. public void setV_14(String v_14) {
  219. this.v_14 = v_14;
  220. }
  221. public String getV_15() {
  222. return this.v_15;
  223. }
  224. public void setV_15(String v_15) {
  225. this.v_15 = v_15;
  226. }
  227. public String getV_16() {
  228. return this.v_16;
  229. }
  230. public void setV_16(String v_16) {
  231. this.v_16 = v_16;
  232. }
  233. public String getV_17() {
  234. return this.v_17;
  235. }
  236. public void setV_17(String v_17) {
  237. this.v_17 = v_17;
  238. }
  239. public String getV_18() {
  240. return this.v_18;
  241. }
  242. public void setV_18(String v_18) {
  243. this.v_18 = v_18;
  244. }
  245. public String getV_19() {
  246. return this.v_19;
  247. }
  248. public void setV_19(String v_19) {
  249. this.v_19 = v_19;
  250. }
  251. public String getV_20() {
  252. return this.v_20;
  253. }
  254. public void setV_20(String v_20) {
  255. this.v_20 = v_20;
  256. }
  257. public String getV_21() {
  258. return this.v_21;
  259. }
  260. public void setV_21(String v_21) {
  261. this.v_21 = v_21;
  262. }
  263. public String getV_22() {
  264. return this.v_22;
  265. }
  266. public void setV_22(String v_22) {
  267. this.v_22 = v_22;
  268. }
  269. public String getV_23() {
  270. return this.v_23;
  271. }
  272. public void setV_23(String v_23) {
  273. this.v_23 = v_23;
  274. }
  275. public String getV_24() {
  276. return this.v_24;
  277. }
  278. public void setV_24(String v_24) {
  279. this.v_24 = v_24;
  280. }
  281. public String getV_25() {
  282. return this.v_25;
  283. }
  284. public void setV_25(String v_25) {
  285. this.v_25 = v_25;
  286. }
  287. public String getV_26() {
  288. return this.v_26;
  289. }
  290. public void setV_26(String v_26) {
  291. this.v_26 = v_26;
  292. }
  293. public String getV_27() {
  294. return this.v_27;
  295. }
  296. public void setV_27(String v_27) {
  297. this.v_27 = v_27;
  298. }
  299. public String getV_28() {
  300. return this.v_28;
  301. }
  302. public void setV_28(String v_28) {
  303. this.v_28 = v_28;
  304. }
  305. public String getV_29() {
  306. return this.v_29;
  307. }
  308. public void setV_29(String v_29) {
  309. this.v_29 = v_29;
  310. }
  311. public String getV_30() {
  312. return this.v_30;
  313. }
  314. public void setV_30(String v_30) {
  315. this.v_30 = v_30;
  316. }
  317. public String getV_31() {
  318. return this.v_31;
  319. }
  320. public void setV_31(String v_31) {
  321. this.v_31 = v_31;
  322. }
  323. public String getV_32() {
  324. return this.v_32;
  325. }
  326. public void setV_32(String v_32) {
  327. this.v_32 = v_32;
  328. }
  329. public String getV_33() {
  330. return this.v_33;
  331. }
  332. public void setV_33(String v_33) {
  333. this.v_33 = v_33;
  334. }
  335. public String getV_34() {
  336. return this.v_34;
  337. }
  338. public void setV_34(String v_34) {
  339. this.v_34 = v_34;
  340. }
  341. public String getV_35() {
  342. return this.v_35;
  343. }
  344. public void setV_35(String v_35) {
  345. this.v_35 = v_35;
  346. }
  347. public String getV_36() {
  348. return this.v_36;
  349. }
  350. public void setV_36(String v_36) {
  351. this.v_36 = v_36;
  352. }
  353. public String getV_37() {
  354. return this.v_37;
  355. }
  356. public void setV_37(String v_37) {
  357. this.v_37 = v_37;
  358. }
  359. public String getV_38() {
  360. return this.v_38;
  361. }
  362. public void setV_38(String v_38) {
  363. this.v_38 = v_38;
  364. }
  365. public String getV_39() {
  366. return this.v_39;
  367. }
  368. public void setV_39(String v_39) {
  369. this.v_39 = v_39;
  370. }
  371. public String getV_40() {
  372. return this.v_40;
  373. }
  374. public void setV_40(String v_40) {
  375. this.v_40 = v_40;
  376. }
  377. public Calendar getReqtimestamp() {
  378. return reqtimestamp;
  379. }
  380. public void setReqtimestamp(Calendar reqtimestamp) {
  381. this.reqtimestamp = reqtimestamp;
  382. }
  383. }