PatentApplicationFeeBo.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. package com.goafanti.techservice.patent.bo;
  2. import java.util.Date;
  3. import org.apache.commons.lang3.time.DateFormatUtils;
  4. /**
  5. * 专利申请费用管理
  6. */
  7. public class PatentApplicationFeeBo {
  8. private String uid;
  9. private String oid;
  10. private String pid;
  11. private String cid;
  12. private Integer serialNumber;
  13. private String patentNumber;
  14. private String locationProvince;
  15. private String unitName;
  16. private String patentName;
  17. private Integer paymentState;
  18. private Integer applicationFee;
  19. private Integer trialFee;
  20. private Integer printingFee;
  21. private Integer isRequestFunds;
  22. private Integer isReimbursement;
  23. private Date patentApplicationDate;
  24. public String getUid() {
  25. return uid;
  26. }
  27. public void setUid(String uid) {
  28. this.uid = uid;
  29. }
  30. public String getOid() {
  31. return oid;
  32. }
  33. public void setOid(String oid) {
  34. this.oid = oid;
  35. }
  36. public String getPid() {
  37. return pid;
  38. }
  39. public void setPid(String pid) {
  40. this.pid = pid;
  41. }
  42. public String getCid() {
  43. return cid;
  44. }
  45. public void setCid(String cid) {
  46. this.cid = cid;
  47. }
  48. public Integer getSerialNumber() {
  49. return serialNumber;
  50. }
  51. public void setSerialNumber(Integer serialNumber) {
  52. this.serialNumber = serialNumber;
  53. }
  54. public String getPatentNumber() {
  55. return patentNumber;
  56. }
  57. public void setPatentNumber(String patentNumber) {
  58. this.patentNumber = patentNumber;
  59. }
  60. public String getLocationProvince() {
  61. return locationProvince;
  62. }
  63. public void setLocationProvince(String locationProvince) {
  64. this.locationProvince = locationProvince;
  65. }
  66. public String getUnitName() {
  67. return unitName;
  68. }
  69. public void setUnitName(String unitName) {
  70. this.unitName = unitName;
  71. }
  72. public String getPatentName() {
  73. return patentName;
  74. }
  75. public void setPatentName(String patentName) {
  76. this.patentName = patentName;
  77. }
  78. public Integer getPaymentState() {
  79. return paymentState;
  80. }
  81. public void setPaymentState(Integer paymentState) {
  82. this.paymentState = paymentState;
  83. }
  84. public Integer getApplicationFee() {
  85. return applicationFee;
  86. }
  87. public void setApplicationFee(Integer applicationFee) {
  88. this.applicationFee = applicationFee;
  89. }
  90. public Integer getTrialFee() {
  91. return trialFee;
  92. }
  93. public void setTrialFee(Integer trialFee) {
  94. this.trialFee = trialFee;
  95. }
  96. public Integer getPrintingFee() {
  97. return printingFee;
  98. }
  99. public void setPrintingFee(Integer printingFee) {
  100. this.printingFee = printingFee;
  101. }
  102. public Integer getIsRequestFunds() {
  103. return isRequestFunds;
  104. }
  105. public void setIsRequestFunds(Integer isRequestFunds) {
  106. this.isRequestFunds = isRequestFunds;
  107. }
  108. public Integer getIsReimbursement() {
  109. return isReimbursement;
  110. }
  111. public void setIsReimbursement(Integer isReimbursement) {
  112. this.isReimbursement = isReimbursement;
  113. }
  114. public Date getPatentApplicationDate() {
  115. return patentApplicationDate;
  116. }
  117. public void setPatentApplicationDate(Date patentApplicationDate) {
  118. this.patentApplicationDate = patentApplicationDate;
  119. }
  120. //patentApplicationDate
  121. public String getPatentApplicationDateFormattedDate(){
  122. if (this.patentApplicationDate == null) {
  123. return null;
  124. } else {
  125. return DateFormatUtils.format(this.getPatentApplicationDate(), "yyyy-MM-dd");
  126. }
  127. }
  128. public void setPatentApplicationDateFormattedDate(String patentApplicationDateFormattedDate){
  129. }
  130. }