| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- package com.goafanti.patent.bo;
- import java.util.Date;
- import org.apache.commons.lang3.time.DateFormatUtils;
- import com.goafanti.common.constant.AFTConstants;
- /**
- * 专利申请费用管理
- */
- public class PatentApplicationFeeBo {
- private String uid;
- private String oid;
- private String pid;
- private String cid;
- private Integer serialNumber;
- private String patentNumber;
- private String locationProvince;
- private String unitName;
- private String patentName;
-
- private Integer paymentState;
-
- private Integer applicationFee;
-
- private Integer trialFee;
-
- private Integer printingFee;
-
- private Integer funds;
-
- private Integer reimbursement;
-
- private Date patentApplicationDate;
-
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
- public String getOid() {
- return oid;
- }
- public void setOid(String oid) {
- this.oid = oid;
- }
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public String getCid() {
- return cid;
- }
- public void setCid(String cid) {
- this.cid = cid;
- }
-
- public Integer getSerialNumber() {
- return serialNumber;
- }
- public void setSerialNumber(Integer serialNumber) {
- this.serialNumber = serialNumber;
- }
- public String getPatentNumber() {
- return patentNumber;
- }
- public void setPatentNumber(String patentNumber) {
- this.patentNumber = patentNumber;
- }
- public String getLocationProvince() {
- return locationProvince;
- }
- public void setLocationProvince(String locationProvince) {
- this.locationProvince = locationProvince;
- }
- public String getUnitName() {
- return unitName;
- }
- public void setUnitName(String unitName) {
- this.unitName = unitName;
- }
- public String getPatentName() {
- return patentName;
- }
- public void setPatentName(String patentName) {
- this.patentName = patentName;
- }
- public Integer getPaymentState() {
- return paymentState;
- }
- public void setPaymentState(Integer paymentState) {
- this.paymentState = paymentState;
- }
- public Integer getApplicationFee() {
- return applicationFee;
- }
- public void setApplicationFee(Integer applicationFee) {
- this.applicationFee = applicationFee;
- }
- public Integer getTrialFee() {
- return trialFee;
- }
- public void setTrialFee(Integer trialFee) {
- this.trialFee = trialFee;
- }
- public Integer getPrintingFee() {
- return printingFee;
- }
- public void setPrintingFee(Integer printingFee) {
- this.printingFee = printingFee;
- }
-
-
- public Integer getFunds() {
- return funds;
- }
- public void setFunds(Integer funds) {
- this.funds = funds;
- }
- public Integer getReimbursement() {
- return reimbursement;
- }
- public void setReimbursement(Integer reimbursement) {
- this.reimbursement = reimbursement;
- }
- public Date getPatentApplicationDate() {
- return patentApplicationDate;
- }
- public void setPatentApplicationDate(Date patentApplicationDate) {
- this.patentApplicationDate = patentApplicationDate;
- }
-
- //patentApplicationDate
- public String getPatentApplicationDateFormattedDate(){
- if (this.patentApplicationDate == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getPatentApplicationDate(), AFTConstants.YYYYMMDDHHMMSS);
- }
- }
-
- public void setPatentApplicationDateFormattedDate(String patentApplicationDateFormattedDate){
-
- }
-
-
- }
|