PatentNew.java 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import java.io.Serializable;
  5. public class PatentNew implements Serializable {
  6. /**
  7. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.id
  8. * @mbg.generated Thu May 27 11:21:28 CST 2021
  9. */
  10. private Integer id;
  11. /**
  12. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.patent_no
  13. * @mbg.generated Thu May 27 11:21:28 CST 2021
  14. */
  15. private String patentNo;
  16. /**
  17. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.name
  18. * @mbg.generated Thu May 27 11:21:28 CST 2021
  19. */
  20. private String name;
  21. /**
  22. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.type
  23. * @mbg.generated Thu May 27 11:21:28 CST 2021
  24. */
  25. private Integer type;
  26. /**
  27. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.status
  28. * @mbg.generated Thu May 27 11:21:28 CST 2021
  29. */
  30. private Integer status;
  31. /**
  32. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.apply_date
  33. * @mbg.generated Thu May 27 11:21:28 CST 2021
  34. */
  35. private Date applyDate;
  36. /**
  37. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.authorization_date
  38. * @mbg.generated Thu May 27 11:21:28 CST 2021
  39. */
  40. private Date authorizationDate;
  41. /**
  42. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.patent_amount
  43. * @mbg.generated Thu May 27 11:21:28 CST 2021
  44. */
  45. private BigDecimal patentAmount;
  46. /**
  47. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.applicant
  48. * @mbg.generated Thu May 27 11:21:28 CST 2021
  49. */
  50. private String applicant;
  51. /**
  52. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.province
  53. * @mbg.generated Thu May 27 11:21:28 CST 2021
  54. */
  55. private Integer province;
  56. /**
  57. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.contact_mobile
  58. * @mbg.generated Thu May 27 11:21:28 CST 2021
  59. */
  60. private String contactMobile;
  61. /**
  62. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.email
  63. * @mbg.generated Thu May 27 11:21:28 CST 2021
  64. */
  65. private String email;
  66. /**
  67. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.certificate_url
  68. * @mbg.generated Thu May 27 11:21:28 CST 2021
  69. */
  70. private String certificateUrl;
  71. /**
  72. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.create_time
  73. * @mbg.generated Thu May 27 11:21:28 CST 2021
  74. */
  75. private Date createTime;
  76. /**
  77. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.update_time
  78. * @mbg.generated Thu May 27 11:21:28 CST 2021
  79. */
  80. private Date updateTime;
  81. /**
  82. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.aid
  83. * @mbg.generated Thu May 27 11:21:28 CST 2021
  84. */
  85. private String aid;
  86. /**
  87. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.years
  88. * @mbg.generated Thu May 27 11:21:28 CST 2021
  89. */
  90. private Integer years;
  91. /**
  92. * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.uid
  93. * @mbg.generated Thu May 27 11:21:28 CST 2021
  94. */
  95. private String uid;
  96. /**
  97. * This field was generated by MyBatis Generator. This field corresponds to the database table patent_new
  98. * @mbg.generated Thu May 27 11:21:28 CST 2021
  99. */
  100. private static final long serialVersionUID = 1L;
  101. /**
  102. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.id
  103. * @return the value of patent_new.id
  104. * @mbg.generated Thu May 27 11:21:28 CST 2021
  105. */
  106. public Integer getId() {
  107. return id;
  108. }
  109. /**
  110. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.id
  111. * @param id the value for patent_new.id
  112. * @mbg.generated Thu May 27 11:21:28 CST 2021
  113. */
  114. public void setId(Integer id) {
  115. this.id = id;
  116. }
  117. /**
  118. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.patent_no
  119. * @return the value of patent_new.patent_no
  120. * @mbg.generated Thu May 27 11:21:28 CST 2021
  121. */
  122. public String getPatentNo() {
  123. return patentNo;
  124. }
  125. /**
  126. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.patent_no
  127. * @param patentNo the value for patent_new.patent_no
  128. * @mbg.generated Thu May 27 11:21:28 CST 2021
  129. */
  130. public void setPatentNo(String patentNo) {
  131. this.patentNo = patentNo == null ? null : patentNo.trim();
  132. }
  133. /**
  134. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.name
  135. * @return the value of patent_new.name
  136. * @mbg.generated Thu May 27 11:21:28 CST 2021
  137. */
  138. public String getName() {
  139. return name;
  140. }
  141. /**
  142. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.name
  143. * @param name the value for patent_new.name
  144. * @mbg.generated Thu May 27 11:21:28 CST 2021
  145. */
  146. public void setName(String name) {
  147. this.name = name == null ? null : name.trim();
  148. }
  149. /**
  150. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.type
  151. * @return the value of patent_new.type
  152. * @mbg.generated Thu May 27 11:21:28 CST 2021
  153. */
  154. public Integer getType() {
  155. return type;
  156. }
  157. /**
  158. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.type
  159. * @param type the value for patent_new.type
  160. * @mbg.generated Thu May 27 11:21:28 CST 2021
  161. */
  162. public void setType(Integer type) {
  163. this.type = type;
  164. }
  165. /**
  166. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.status
  167. * @return the value of patent_new.status
  168. * @mbg.generated Thu May 27 11:21:28 CST 2021
  169. */
  170. public Integer getStatus() {
  171. return status;
  172. }
  173. /**
  174. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.status
  175. * @param status the value for patent_new.status
  176. * @mbg.generated Thu May 27 11:21:28 CST 2021
  177. */
  178. public void setStatus(Integer status) {
  179. this.status = status;
  180. }
  181. /**
  182. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.apply_date
  183. * @return the value of patent_new.apply_date
  184. * @mbg.generated Thu May 27 11:21:28 CST 2021
  185. */
  186. public Date getApplyDate() {
  187. return applyDate;
  188. }
  189. /**
  190. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.apply_date
  191. * @param applyDate the value for patent_new.apply_date
  192. * @mbg.generated Thu May 27 11:21:28 CST 2021
  193. */
  194. public void setApplyDate(Date applyDate) {
  195. this.applyDate = applyDate;
  196. }
  197. /**
  198. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.authorization_date
  199. * @return the value of patent_new.authorization_date
  200. * @mbg.generated Thu May 27 11:21:28 CST 2021
  201. */
  202. public Date getAuthorizationDate() {
  203. return authorizationDate;
  204. }
  205. /**
  206. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.authorization_date
  207. * @param authorizationDate the value for patent_new.authorization_date
  208. * @mbg.generated Thu May 27 11:21:28 CST 2021
  209. */
  210. public void setAuthorizationDate(Date authorizationDate) {
  211. this.authorizationDate = authorizationDate;
  212. }
  213. /**
  214. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.patent_amount
  215. * @return the value of patent_new.patent_amount
  216. * @mbg.generated Thu May 27 11:21:28 CST 2021
  217. */
  218. public BigDecimal getPatentAmount() {
  219. return patentAmount;
  220. }
  221. /**
  222. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.patent_amount
  223. * @param patentAmount the value for patent_new.patent_amount
  224. * @mbg.generated Thu May 27 11:21:28 CST 2021
  225. */
  226. public void setPatentAmount(BigDecimal patentAmount) {
  227. this.patentAmount = patentAmount;
  228. }
  229. /**
  230. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.applicant
  231. * @return the value of patent_new.applicant
  232. * @mbg.generated Thu May 27 11:21:28 CST 2021
  233. */
  234. public String getApplicant() {
  235. return applicant;
  236. }
  237. /**
  238. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.applicant
  239. * @param applicant the value for patent_new.applicant
  240. * @mbg.generated Thu May 27 11:21:28 CST 2021
  241. */
  242. public void setApplicant(String applicant) {
  243. this.applicant = applicant == null ? null : applicant.trim();
  244. }
  245. /**
  246. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.province
  247. * @return the value of patent_new.province
  248. * @mbg.generated Thu May 27 11:21:28 CST 2021
  249. */
  250. public Integer getProvince() {
  251. return province;
  252. }
  253. /**
  254. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.province
  255. * @param province the value for patent_new.province
  256. * @mbg.generated Thu May 27 11:21:28 CST 2021
  257. */
  258. public void setProvince(Integer province) {
  259. this.province = province;
  260. }
  261. /**
  262. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.contact_mobile
  263. * @return the value of patent_new.contact_mobile
  264. * @mbg.generated Thu May 27 11:21:28 CST 2021
  265. */
  266. public String getContactMobile() {
  267. return contactMobile;
  268. }
  269. /**
  270. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.contact_mobile
  271. * @param contactMobile the value for patent_new.contact_mobile
  272. * @mbg.generated Thu May 27 11:21:28 CST 2021
  273. */
  274. public void setContactMobile(String contactMobile) {
  275. this.contactMobile = contactMobile == null ? null : contactMobile.trim();
  276. }
  277. /**
  278. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.email
  279. * @return the value of patent_new.email
  280. * @mbg.generated Thu May 27 11:21:28 CST 2021
  281. */
  282. public String getEmail() {
  283. return email;
  284. }
  285. /**
  286. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.email
  287. * @param email the value for patent_new.email
  288. * @mbg.generated Thu May 27 11:21:28 CST 2021
  289. */
  290. public void setEmail(String email) {
  291. this.email = email == null ? null : email.trim();
  292. }
  293. /**
  294. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.certificate_url
  295. * @return the value of patent_new.certificate_url
  296. * @mbg.generated Thu May 27 11:21:28 CST 2021
  297. */
  298. public String getCertificateUrl() {
  299. return certificateUrl;
  300. }
  301. /**
  302. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.certificate_url
  303. * @param certificateUrl the value for patent_new.certificate_url
  304. * @mbg.generated Thu May 27 11:21:28 CST 2021
  305. */
  306. public void setCertificateUrl(String certificateUrl) {
  307. this.certificateUrl = certificateUrl == null ? null : certificateUrl.trim();
  308. }
  309. /**
  310. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.create_time
  311. * @return the value of patent_new.create_time
  312. * @mbg.generated Thu May 27 11:21:28 CST 2021
  313. */
  314. public Date getCreateTime() {
  315. return createTime;
  316. }
  317. /**
  318. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.create_time
  319. * @param createTime the value for patent_new.create_time
  320. * @mbg.generated Thu May 27 11:21:28 CST 2021
  321. */
  322. public void setCreateTime(Date createTime) {
  323. this.createTime = createTime;
  324. }
  325. /**
  326. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.update_time
  327. * @return the value of patent_new.update_time
  328. * @mbg.generated Thu May 27 11:21:28 CST 2021
  329. */
  330. public Date getUpdateTime() {
  331. return updateTime;
  332. }
  333. /**
  334. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.update_time
  335. * @param updateTime the value for patent_new.update_time
  336. * @mbg.generated Thu May 27 11:21:28 CST 2021
  337. */
  338. public void setUpdateTime(Date updateTime) {
  339. this.updateTime = updateTime;
  340. }
  341. /**
  342. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.aid
  343. * @return the value of patent_new.aid
  344. * @mbg.generated Thu May 27 11:21:28 CST 2021
  345. */
  346. public String getAid() {
  347. return aid;
  348. }
  349. /**
  350. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.aid
  351. * @param aid the value for patent_new.aid
  352. * @mbg.generated Thu May 27 11:21:28 CST 2021
  353. */
  354. public void setAid(String aid) {
  355. this.aid = aid == null ? null : aid.trim();
  356. }
  357. /**
  358. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.years
  359. * @return the value of patent_new.years
  360. * @mbg.generated Thu May 27 11:21:28 CST 2021
  361. */
  362. public Integer getYears() {
  363. return years;
  364. }
  365. /**
  366. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.years
  367. * @param years the value for patent_new.years
  368. * @mbg.generated Thu May 27 11:21:28 CST 2021
  369. */
  370. public void setYears(Integer years) {
  371. this.years = years;
  372. }
  373. /**
  374. * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.uid
  375. * @return the value of patent_new.uid
  376. * @mbg.generated Thu May 27 11:21:28 CST 2021
  377. */
  378. public String getUid() {
  379. return uid;
  380. }
  381. /**
  382. * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.uid
  383. * @param uid the value for patent_new.uid
  384. * @mbg.generated Thu May 27 11:21:28 CST 2021
  385. */
  386. public void setUid(String uid) {
  387. this.uid = uid == null ? null : uid.trim();
  388. }
  389. /**
  390. * This method was generated by MyBatis Generator. This method corresponds to the database table patent_new
  391. * @mbg.generated Thu May 27 11:21:28 CST 2021
  392. */
  393. @Override
  394. public String toString() {
  395. StringBuilder sb = new StringBuilder();
  396. sb.append(getClass().getSimpleName());
  397. sb.append(" [");
  398. sb.append("Hash = ").append(hashCode());
  399. sb.append(", id=").append(id);
  400. sb.append(", patentNo=").append(patentNo);
  401. sb.append(", name=").append(name);
  402. sb.append(", type=").append(type);
  403. sb.append(", status=").append(status);
  404. sb.append(", applyDate=").append(applyDate);
  405. sb.append(", authorizationDate=").append(authorizationDate);
  406. sb.append(", patentAmount=").append(patentAmount);
  407. sb.append(", applicant=").append(applicant);
  408. sb.append(", province=").append(province);
  409. sb.append(", contactMobile=").append(contactMobile);
  410. sb.append(", email=").append(email);
  411. sb.append(", certificateUrl=").append(certificateUrl);
  412. sb.append(", createTime=").append(createTime);
  413. sb.append(", updateTime=").append(updateTime);
  414. sb.append(", aid=").append(aid);
  415. sb.append(", years=").append(years);
  416. sb.append(", uid=").append(uid);
  417. sb.append(", serialVersionUID=").append(serialVersionUID);
  418. sb.append("]");
  419. return sb.toString();
  420. }
  421. }