DWaynodeResult.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package com.miniframe.model.system;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import javax.persistence.*;
  5. @Table(name = "d_waynode_result")
  6. public class DWaynodeResult extends MiniserviceBaseModel implements Serializable {
  7. @Id
  8. private Integer id;
  9. private Integer aid;
  10. private Integer jid;
  11. private String wcode;
  12. private String ncode;
  13. private String v1;
  14. private String v2;
  15. private String v3;
  16. private static final long serialVersionUID = 1L;
  17. /**
  18. * @return id
  19. */
  20. public Integer getId() {
  21. return id;
  22. }
  23. /**
  24. * @param id
  25. */
  26. public void setId(Integer id) {
  27. this.id = id;
  28. }
  29. /**
  30. * @return aid
  31. */
  32. public Integer getAid() {
  33. return aid;
  34. }
  35. /**
  36. * @param aid
  37. */
  38. public void setAid(Integer aid) {
  39. this.aid = aid;
  40. }
  41. /**
  42. * @return jid
  43. */
  44. public Integer getJid() {
  45. return jid;
  46. }
  47. /**
  48. * @param jid
  49. */
  50. public void setJid(Integer jid) {
  51. this.jid = jid;
  52. }
  53. /**
  54. * @return wcode
  55. */
  56. public String getWcode() {
  57. return wcode;
  58. }
  59. /**
  60. * @param wcode
  61. */
  62. public void setWcode(String wcode) {
  63. this.wcode = wcode == null ? null : wcode.trim();
  64. }
  65. /**
  66. * @return ncode
  67. */
  68. public String getNcode() {
  69. return ncode;
  70. }
  71. /**
  72. * @param ncode
  73. */
  74. public void setNcode(String ncode) {
  75. this.ncode = ncode == null ? null : ncode.trim();
  76. }
  77. /**
  78. * @return v1
  79. */
  80. public String getV1() {
  81. return v1;
  82. }
  83. /**
  84. * @param v1
  85. */
  86. public void setV1(String v1) {
  87. this.v1 = v1 == null ? null : v1.trim();
  88. }
  89. /**
  90. * @return v2
  91. */
  92. public String getV2() {
  93. return v2;
  94. }
  95. /**
  96. * @param v2
  97. */
  98. public void setV2(String v2) {
  99. this.v2 = v2 == null ? null : v2.trim();
  100. }
  101. /**
  102. * @return v3
  103. */
  104. public String getV3() {
  105. return v3;
  106. }
  107. /**
  108. * @param v3
  109. */
  110. public void setV3(String v3) {
  111. this.v3 = v3 == null ? null : v3.trim();
  112. }
  113. }