BusinessProject.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class BusinessProject {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.id
  7. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  8. */
  9. private String id;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.create_id
  12. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  13. */
  14. private String createId;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.create_time
  17. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  18. */
  19. private Date createTime;
  20. /**
  21. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.update_time
  22. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  23. */
  24. private Date updateTime;
  25. /**
  26. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.delete_sign
  27. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  28. */
  29. private Integer deleteSign;
  30. /**
  31. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.bname
  32. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  33. */
  34. private String bname;
  35. /**
  36. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.cid
  37. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  38. */
  39. private String cid;
  40. /**
  41. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.price
  42. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  43. */
  44. private BigDecimal price;
  45. /**
  46. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.offset
  47. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  48. */
  49. private BigDecimal offset;
  50. /**
  51. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.activity_price
  52. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  53. */
  54. private BigDecimal activityPrice;
  55. /**
  56. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.activity_flag
  57. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  58. */
  59. private String activityFlag;
  60. /**
  61. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.member_price
  62. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  63. */
  64. private BigDecimal memberPrice;
  65. /**
  66. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.introduce
  67. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  68. */
  69. private String introduce;
  70. /**
  71. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.status
  72. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  73. */
  74. private String status;
  75. /**
  76. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.country
  77. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  78. */
  79. private String country;
  80. /**
  81. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.province
  82. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  83. */
  84. private String province;
  85. /**
  86. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.city
  87. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  88. */
  89. private String city;
  90. /**
  91. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.district
  92. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  93. */
  94. private String district;
  95. /**
  96. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.principal_id
  97. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  98. */
  99. private String principalId;
  100. /**
  101. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.Value_effect
  102. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  103. */
  104. private String valueEffect;
  105. /**
  106. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.client_size
  107. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  108. */
  109. private String clientSize;
  110. /**
  111. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.max_logo
  112. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  113. */
  114. private String maxLogo;
  115. /**
  116. * This field was generated by MyBatis Generator. This field corresponds to the database column business_project.min_logo
  117. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  118. */
  119. private String minLogo;
  120. /**
  121. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.id
  122. * @return the value of business_project.id
  123. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  124. */
  125. public String getId() {
  126. return id;
  127. }
  128. /**
  129. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.id
  130. * @param id the value for business_project.id
  131. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  132. */
  133. public void setId(String id) {
  134. this.id = id;
  135. }
  136. /**
  137. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.create_id
  138. * @return the value of business_project.create_id
  139. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  140. */
  141. public String getCreateId() {
  142. return createId;
  143. }
  144. /**
  145. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.create_id
  146. * @param createId the value for business_project.create_id
  147. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  148. */
  149. public void setCreateId(String createId) {
  150. this.createId = createId;
  151. }
  152. /**
  153. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.create_time
  154. * @return the value of business_project.create_time
  155. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  156. */
  157. public Date getCreateTime() {
  158. return createTime;
  159. }
  160. /**
  161. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.create_time
  162. * @param createTime the value for business_project.create_time
  163. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  164. */
  165. public void setCreateTime(Date createTime) {
  166. this.createTime = createTime;
  167. }
  168. /**
  169. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.update_time
  170. * @return the value of business_project.update_time
  171. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  172. */
  173. public Date getUpdateTime() {
  174. return updateTime;
  175. }
  176. /**
  177. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.update_time
  178. * @param updateTime the value for business_project.update_time
  179. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  180. */
  181. public void setUpdateTime(Date updateTime) {
  182. this.updateTime = updateTime;
  183. }
  184. /**
  185. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.delete_sign
  186. * @return the value of business_project.delete_sign
  187. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  188. */
  189. public Integer getDeleteSign() {
  190. return deleteSign;
  191. }
  192. /**
  193. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.delete_sign
  194. * @param deleteSign the value for business_project.delete_sign
  195. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  196. */
  197. public void setDeleteSign(Integer deleteSign) {
  198. this.deleteSign = deleteSign;
  199. }
  200. /**
  201. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.bname
  202. * @return the value of business_project.bname
  203. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  204. */
  205. public String getBname() {
  206. return bname;
  207. }
  208. /**
  209. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.bname
  210. * @param bname the value for business_project.bname
  211. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  212. */
  213. public void setBname(String bname) {
  214. this.bname = bname;
  215. }
  216. /**
  217. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.cid
  218. * @return the value of business_project.cid
  219. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  220. */
  221. public String getCid() {
  222. return cid;
  223. }
  224. /**
  225. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.cid
  226. * @param cid the value for business_project.cid
  227. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  228. */
  229. public void setCid(String cid) {
  230. this.cid = cid;
  231. }
  232. /**
  233. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.price
  234. * @return the value of business_project.price
  235. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  236. */
  237. public BigDecimal getPrice() {
  238. return price;
  239. }
  240. /**
  241. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.price
  242. * @param price the value for business_project.price
  243. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  244. */
  245. public void setPrice(BigDecimal price) {
  246. this.price = price;
  247. }
  248. /**
  249. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.offset
  250. * @return the value of business_project.offset
  251. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  252. */
  253. public BigDecimal getOffset() {
  254. return offset;
  255. }
  256. /**
  257. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.offset
  258. * @param offset the value for business_project.offset
  259. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  260. */
  261. public void setOffset(BigDecimal offset) {
  262. this.offset = offset;
  263. }
  264. /**
  265. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.activity_price
  266. * @return the value of business_project.activity_price
  267. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  268. */
  269. public BigDecimal getActivityPrice() {
  270. return activityPrice;
  271. }
  272. /**
  273. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.activity_price
  274. * @param activityPrice the value for business_project.activity_price
  275. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  276. */
  277. public void setActivityPrice(BigDecimal
  278. activityPrice) {
  279. this.activityPrice = activityPrice;
  280. }
  281. /**
  282. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.activity_flag
  283. * @return the value of business_project.activity_flag
  284. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  285. */
  286. public String getActivityFlag() {
  287. return activityFlag;
  288. }
  289. /**
  290. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.activity_flag
  291. * @param activityFlag the value for business_project.activity_flag
  292. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  293. */
  294. public void setActivityFlag(String activityFlag) {
  295. this.activityFlag = activityFlag;
  296. }
  297. /**
  298. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.member_price
  299. * @return the value of business_project.member_price
  300. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  301. */
  302. public BigDecimal getMemberPrice() {
  303. return memberPrice;
  304. }
  305. /**
  306. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.member_price
  307. * @param memberPrice the value for business_project.member_price
  308. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  309. */
  310. public void setMemberPrice(BigDecimal memberPrice) {
  311. this.memberPrice = memberPrice;
  312. }
  313. /**
  314. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.introduce
  315. * @return the value of business_project.introduce
  316. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  317. */
  318. public String getIntroduce() {
  319. return introduce;
  320. }
  321. /**
  322. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.introduce
  323. * @param introduce the value for business_project.introduce
  324. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  325. */
  326. public void setIntroduce(String introduce) {
  327. this.introduce = introduce;
  328. }
  329. /**
  330. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.status
  331. * @return the value of business_project.status
  332. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  333. */
  334. public String getStatus() {
  335. return status;
  336. }
  337. /**
  338. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.status
  339. * @param status the value for business_project.status
  340. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  341. */
  342. public void setStatus(String status) {
  343. this.status = status;
  344. }
  345. /**
  346. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.country
  347. * @return the value of business_project.country
  348. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  349. */
  350. public String getCountry() {
  351. return country;
  352. }
  353. /**
  354. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.country
  355. * @param country the value for business_project.country
  356. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  357. */
  358. public void setCountry(String country) {
  359. this.country = country;
  360. }
  361. /**
  362. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.province
  363. * @return the value of business_project.province
  364. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  365. */
  366. public String getProvince() {
  367. return province;
  368. }
  369. /**
  370. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.province
  371. * @param province the value for business_project.province
  372. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  373. */
  374. public void setProvince(String province) {
  375. this.province = province;
  376. }
  377. /**
  378. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.city
  379. * @return the value of business_project.city
  380. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  381. */
  382. public String getCity() {
  383. return city;
  384. }
  385. /**
  386. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.city
  387. * @param city the value for business_project.city
  388. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  389. */
  390. public void setCity(String city) {
  391. this.city = city;
  392. }
  393. /**
  394. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.district
  395. * @return the value of business_project.district
  396. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  397. */
  398. public String getDistrict() {
  399. return district;
  400. }
  401. /**
  402. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.district
  403. * @param district the value for business_project.district
  404. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  405. */
  406. public void setDistrict(String district) {
  407. this.district = district;
  408. }
  409. /**
  410. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.principal_id
  411. * @return the value of business_project.principal_id
  412. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  413. */
  414. public String getPrincipalId() {
  415. return principalId;
  416. }
  417. /**
  418. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.principal_id
  419. * @param principalId the value for business_project.principal_id
  420. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  421. */
  422. public void setPrincipalId(String principalId) {
  423. this.principalId = principalId;
  424. }
  425. /**
  426. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.Value_effect
  427. * @return the value of business_project.Value_effect
  428. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  429. */
  430. public String getValueEffect() {
  431. return valueEffect;
  432. }
  433. /**
  434. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.Value_effect
  435. * @param valueEffect the value for business_project.Value_effect
  436. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  437. */
  438. public void setValueEffect(String valueEffect) {
  439. this.valueEffect = valueEffect;
  440. }
  441. /**
  442. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.client_size
  443. * @return the value of business_project.client_size
  444. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  445. */
  446. public String getClientSize() {
  447. return clientSize;
  448. }
  449. /**
  450. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.client_size
  451. * @param clientSize the value for business_project.client_size
  452. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  453. */
  454. public void setClientSize(String clientSize) {
  455. this.clientSize = clientSize;
  456. }
  457. /**
  458. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.max_logo
  459. * @return the value of business_project.max_logo
  460. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  461. */
  462. public String getMaxLogo() {
  463. return maxLogo;
  464. }
  465. /**
  466. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.max_logo
  467. * @param maxLogo the value for business_project.max_logo
  468. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  469. */
  470. public void setMaxLogo(String maxLogo) {
  471. this.maxLogo = maxLogo;
  472. }
  473. /**
  474. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.min_logo
  475. * @return the value of business_project.min_logo
  476. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  477. */
  478. public String getMinLogo() {
  479. return minLogo;
  480. }
  481. /**
  482. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.min_logo
  483. * @param minLogo the value for business_project.min_logo
  484. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  485. */
  486. public void setMinLogo(String minLogo) {
  487. this.minLogo = minLogo;
  488. }
  489. @Override
  490. public String toString() {
  491. return "BusinessProject [id=" + id + ", createId=" + createId + ", createTime=" + createTime + ", updateTime="
  492. + updateTime + ", deleteSign=" + deleteSign + ", bname=" + bname + ", cid=" + cid + ", price=" + price
  493. + ", offset=" + offset + ", activityPrice=" + activityPrice + ", activityFlag=" + activityFlag
  494. + ", memberPrice=" + memberPrice + ", introduce=" + introduce + ", status=" + status + ", country="
  495. + country + ", province=" + province + ", city=" + city + ", district=" + district + ", principalId="
  496. + principalId + ", valueEffect=" + valueEffect + ", clientSize=" + clientSize + "]";
  497. }
  498. }