BusinessProject.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  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 activityPrice) {
  278. this.activityPrice = activityPrice;
  279. }
  280. /**
  281. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.activity_flag
  282. * @return the value of business_project.activity_flag
  283. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  284. */
  285. public String getActivityFlag() {
  286. return activityFlag;
  287. }
  288. /**
  289. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.activity_flag
  290. * @param activityFlag the value for business_project.activity_flag
  291. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  292. */
  293. public void setActivityFlag(String activityFlag) {
  294. this.activityFlag = activityFlag;
  295. }
  296. /**
  297. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.member_price
  298. * @return the value of business_project.member_price
  299. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  300. */
  301. public BigDecimal getMemberPrice() {
  302. return memberPrice;
  303. }
  304. /**
  305. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.member_price
  306. * @param memberPrice the value for business_project.member_price
  307. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  308. */
  309. public void setMemberPrice(BigDecimal memberPrice) {
  310. this.memberPrice = memberPrice;
  311. }
  312. /**
  313. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.introduce
  314. * @return the value of business_project.introduce
  315. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  316. */
  317. public String getIntroduce() {
  318. return introduce;
  319. }
  320. /**
  321. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.introduce
  322. * @param introduce the value for business_project.introduce
  323. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  324. */
  325. public void setIntroduce(String introduce) {
  326. this.introduce = introduce;
  327. }
  328. /**
  329. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.status
  330. * @return the value of business_project.status
  331. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  332. */
  333. public String getStatus() {
  334. return status;
  335. }
  336. /**
  337. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.status
  338. * @param status the value for business_project.status
  339. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  340. */
  341. public void setStatus(String status) {
  342. this.status = status;
  343. }
  344. /**
  345. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.country
  346. * @return the value of business_project.country
  347. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  348. */
  349. public String getCountry() {
  350. return country;
  351. }
  352. /**
  353. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.country
  354. * @param country the value for business_project.country
  355. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  356. */
  357. public void setCountry(String country) {
  358. this.country = country;
  359. }
  360. /**
  361. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.province
  362. * @return the value of business_project.province
  363. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  364. */
  365. public String getProvince() {
  366. return province;
  367. }
  368. /**
  369. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.province
  370. * @param province the value for business_project.province
  371. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  372. */
  373. public void setProvince(String province) {
  374. this.province = province;
  375. }
  376. /**
  377. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.city
  378. * @return the value of business_project.city
  379. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  380. */
  381. public String getCity() {
  382. return city;
  383. }
  384. /**
  385. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.city
  386. * @param city the value for business_project.city
  387. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  388. */
  389. public void setCity(String city) {
  390. this.city = city;
  391. }
  392. /**
  393. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.district
  394. * @return the value of business_project.district
  395. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  396. */
  397. public String getDistrict() {
  398. return district;
  399. }
  400. /**
  401. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.district
  402. * @param district the value for business_project.district
  403. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  404. */
  405. public void setDistrict(String district) {
  406. this.district = district;
  407. }
  408. /**
  409. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.principal_id
  410. * @return the value of business_project.principal_id
  411. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  412. */
  413. public String getPrincipalId() {
  414. return principalId;
  415. }
  416. /**
  417. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.principal_id
  418. * @param principalId the value for business_project.principal_id
  419. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  420. */
  421. public void setPrincipalId(String principalId) {
  422. this.principalId = principalId;
  423. }
  424. /**
  425. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.Value_effect
  426. * @return the value of business_project.Value_effect
  427. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  428. */
  429. public String getValueEffect() {
  430. return valueEffect;
  431. }
  432. /**
  433. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.Value_effect
  434. * @param valueEffect the value for business_project.Value_effect
  435. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  436. */
  437. public void setValueEffect(String valueEffect) {
  438. this.valueEffect = valueEffect;
  439. }
  440. /**
  441. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.client_size
  442. * @return the value of business_project.client_size
  443. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  444. */
  445. public String getClientSize() {
  446. return clientSize;
  447. }
  448. /**
  449. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.client_size
  450. * @param clientSize the value for business_project.client_size
  451. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  452. */
  453. public void setClientSize(String clientSize) {
  454. this.clientSize = clientSize;
  455. }
  456. /**
  457. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.max_logo
  458. * @return the value of business_project.max_logo
  459. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  460. */
  461. public String getMaxLogo() {
  462. return maxLogo;
  463. }
  464. /**
  465. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.max_logo
  466. * @param maxLogo the value for business_project.max_logo
  467. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  468. */
  469. public void setMaxLogo(String maxLogo) {
  470. this.maxLogo = maxLogo;
  471. }
  472. /**
  473. * This method was generated by MyBatis Generator. This method returns the value of the database column business_project.min_logo
  474. * @return the value of business_project.min_logo
  475. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  476. */
  477. public String getMinLogo() {
  478. return minLogo;
  479. }
  480. /**
  481. * This method was generated by MyBatis Generator. This method sets the value of the database column business_project.min_logo
  482. * @param minLogo the value for business_project.min_logo
  483. * @mbg.generated Tue Dec 12 11:46:55 CST 2017
  484. */
  485. public void setMinLogo(String minLogo) {
  486. this.minLogo = minLogo;
  487. }
  488. @Override
  489. public String toString() {
  490. return "BusinessProject [id=" + id + ", createId=" + createId + ", createTime=" + createTime + ", updateTime="
  491. + updateTime + ", deleteSign=" + deleteSign + ", bname=" + bname + ", cid=" + cid + ", price=" + price
  492. + ", offset=" + offset + ", activityPrice=" + activityPrice + ", activityFlag=" + activityFlag
  493. + ", memberPrice=" + memberPrice + ", introduce=" + introduce + ", status=" + status + ", country="
  494. + country + ", province=" + province + ", city=" + city + ", district=" + district + ", principalId="
  495. + principalId + ", valueEffect=" + valueEffect + ", clientSize=" + clientSize + "]";
  496. }
  497. }