PatentApplicationFeeBo.java 3.6 KB

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