OrganizationSalesTarget.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. public class OrganizationSalesTarget implements Serializable {
  4. /**
  5. *
  6. * This field was generated by MyBatis Generator.
  7. * This field corresponds to the database column organization_sales_target.id
  8. *
  9. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  10. */
  11. private Integer id;
  12. /**
  13. *
  14. * This field was generated by MyBatis Generator.
  15. * This field corresponds to the database column organization_sales_target.uid
  16. *
  17. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  18. */
  19. private String uid;
  20. /**
  21. *
  22. * This field was generated by MyBatis Generator.
  23. * This field corresponds to the database column organization_sales_target.keyword
  24. *
  25. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  26. */
  27. private String keyword;
  28. /**
  29. * This field was generated by MyBatis Generator.
  30. * This field corresponds to the database table organization_sales_target
  31. *
  32. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  33. */
  34. private static final long serialVersionUID = 1L;
  35. /**
  36. * This method was generated by MyBatis Generator.
  37. * This method returns the value of the database column organization_sales_target.id
  38. *
  39. * @return the value of organization_sales_target.id
  40. *
  41. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  42. */
  43. public Integer getId() {
  44. return id;
  45. }
  46. /**
  47. * This method was generated by MyBatis Generator.
  48. * This method sets the value of the database column organization_sales_target.id
  49. *
  50. * @param id the value for organization_sales_target.id
  51. *
  52. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  53. */
  54. public void setId(Integer id) {
  55. this.id = id;
  56. }
  57. /**
  58. * This method was generated by MyBatis Generator.
  59. * This method returns the value of the database column organization_sales_target.uid
  60. *
  61. * @return the value of organization_sales_target.uid
  62. *
  63. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  64. */
  65. public String getUid() {
  66. return uid;
  67. }
  68. /**
  69. * This method was generated by MyBatis Generator.
  70. * This method sets the value of the database column organization_sales_target.uid
  71. *
  72. * @param uid the value for organization_sales_target.uid
  73. *
  74. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  75. */
  76. public void setUid(String uid) {
  77. this.uid = uid == null ? null : uid.trim();
  78. }
  79. /**
  80. * This method was generated by MyBatis Generator.
  81. * This method returns the value of the database column organization_sales_target.keyword
  82. *
  83. * @return the value of organization_sales_target.keyword
  84. *
  85. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  86. */
  87. public String getKeyword() {
  88. return keyword;
  89. }
  90. /**
  91. * This method was generated by MyBatis Generator.
  92. * This method sets the value of the database column organization_sales_target.keyword
  93. *
  94. * @param keyword the value for organization_sales_target.keyword
  95. *
  96. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  97. */
  98. public void setKeyword(String keyword) {
  99. this.keyword = keyword == null ? null : keyword.trim();
  100. }
  101. /**
  102. * This method was generated by MyBatis Generator.
  103. * This method corresponds to the database table organization_sales_target
  104. *
  105. * @mbg.generated Mon Jan 04 17:13:29 CST 2021
  106. */
  107. @Override
  108. public String toString() {
  109. StringBuilder sb = new StringBuilder();
  110. sb.append(getClass().getSimpleName());
  111. sb.append(" [");
  112. sb.append("Hash = ").append(hashCode());
  113. sb.append(", id=").append(id);
  114. sb.append(", uid=").append(uid);
  115. sb.append(", keyword=").append(keyword);
  116. sb.append(", serialVersionUID=").append(serialVersionUID);
  117. sb.append("]");
  118. return sb.toString();
  119. }
  120. }