BusinessVarieties.java 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class BusinessVarieties {
  4. /**
  5. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.id
  6. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  7. */
  8. private String id;
  9. /**
  10. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.create_id
  11. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  12. */
  13. private String createId;
  14. /**
  15. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.create_time
  16. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  17. */
  18. private Date createTime;
  19. /**
  20. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.update_time
  21. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  22. */
  23. private Date updateTime;
  24. /**
  25. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.delete_sign
  26. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  27. */
  28. private Integer deleteSign;
  29. /**
  30. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.cid
  31. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  32. */
  33. private String cid;
  34. /**
  35. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.cname
  36. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  37. */
  38. private String cname;
  39. /**
  40. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.super_id
  41. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  42. */
  43. private String superId;
  44. /**
  45. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.layer
  46. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  47. */
  48. private Integer layer;
  49. /**
  50. * This field was generated by MyBatis Generator. This field corresponds to the database column business_varieties.status
  51. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  52. */
  53. private String status;
  54. /**
  55. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.id
  56. * @return the value of business_varieties.id
  57. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  58. */
  59. public String getId() {
  60. return id;
  61. }
  62. /**
  63. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.id
  64. * @param id the value for business_varieties.id
  65. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  66. */
  67. public void setId(String id) {
  68. this.id = id;
  69. }
  70. /**
  71. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.create_id
  72. * @return the value of business_varieties.create_id
  73. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  74. */
  75. public String getCreateId() {
  76. return createId;
  77. }
  78. /**
  79. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.create_id
  80. * @param createId the value for business_varieties.create_id
  81. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  82. */
  83. public void setCreateId(String createId) {
  84. this.createId = createId;
  85. }
  86. /**
  87. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.create_time
  88. * @return the value of business_varieties.create_time
  89. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  90. */
  91. public Date getCreateTime() {
  92. return createTime;
  93. }
  94. /**
  95. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.create_time
  96. * @param createTime the value for business_varieties.create_time
  97. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  98. */
  99. public void setCreateTime(Date createTime) {
  100. this.createTime = createTime;
  101. }
  102. /**
  103. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.update_time
  104. * @return the value of business_varieties.update_time
  105. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  106. */
  107. public Date getUpdateTime() {
  108. return updateTime;
  109. }
  110. /**
  111. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.update_time
  112. * @param updateTime the value for business_varieties.update_time
  113. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  114. */
  115. public void setUpdateTime(Date updateTime) {
  116. this.updateTime = updateTime;
  117. }
  118. /**
  119. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.delete_sign
  120. * @return the value of business_varieties.delete_sign
  121. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  122. */
  123. public Integer getDeleteSign() {
  124. return deleteSign;
  125. }
  126. /**
  127. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.delete_sign
  128. * @param deleteSign the value for business_varieties.delete_sign
  129. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  130. */
  131. public void setDeleteSign(Integer deleteSign) {
  132. this.deleteSign = deleteSign;
  133. }
  134. /**
  135. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.cid
  136. * @return the value of business_varieties.cid
  137. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  138. */
  139. public String getCid() {
  140. return cid;
  141. }
  142. /**
  143. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.cid
  144. * @param cid the value for business_varieties.cid
  145. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  146. */
  147. public void setCid(String cid) {
  148. this.cid = cid;
  149. }
  150. /**
  151. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.cname
  152. * @return the value of business_varieties.cname
  153. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  154. */
  155. public String getCname() {
  156. return cname;
  157. }
  158. /**
  159. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.cname
  160. * @param cname the value for business_varieties.cname
  161. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  162. */
  163. public void setCname(String cname) {
  164. this.cname = cname;
  165. }
  166. /**
  167. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.super_id
  168. * @return the value of business_varieties.super_id
  169. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  170. */
  171. public String getSuperId() {
  172. return superId;
  173. }
  174. /**
  175. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.super_id
  176. * @param superId the value for business_varieties.super_id
  177. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  178. */
  179. public void setSuperId(String superId) {
  180. this.superId = superId;
  181. }
  182. /**
  183. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.layer
  184. * @return the value of business_varieties.layer
  185. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  186. */
  187. public Integer getLayer() {
  188. return layer;
  189. }
  190. /**
  191. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.layer
  192. * @param layer the value for business_varieties.layer
  193. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  194. */
  195. public void setLayer(Integer layer) {
  196. this.layer = layer;
  197. }
  198. /**
  199. * This method was generated by MyBatis Generator. This method returns the value of the database column business_varieties.status
  200. * @return the value of business_varieties.status
  201. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  202. */
  203. public String getStatus() {
  204. return status;
  205. }
  206. /**
  207. * This method was generated by MyBatis Generator. This method sets the value of the database column business_varieties.status
  208. * @param status the value for business_varieties.status
  209. * @mbg.generated Thu Nov 30 10:03:07 CST 2017
  210. */
  211. public void setStatus(String status) {
  212. this.status = status;
  213. }
  214. }