PatentApplicationFeeBo.java 3.4 KB

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