| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- package com.goafanti.patent.bo;
- import java.util.Date;
- import org.apache.commons.lang3.time.DateFormatUtils;
- import com.goafanti.common.constant.AFTConstants;
- /**
- * 待缴费专利管理
- */
- public class PatentPendingBo {
- 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 Integer patentCatagory;
-
- private String patentName;
-
- private Integer patentState;
-
- private Integer annualFeeState;
-
- private Date authorizedDate;
- 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 Integer getPatentCatagory() {
- return patentCatagory;
- }
- public void setPatentCatagory(Integer patentCatagory) {
- this.patentCatagory = patentCatagory;
- }
- public String getPatentName() {
- return patentName;
- }
- public void setPatentName(String patentName) {
- this.patentName = patentName;
- }
- public Integer getPatentState() {
- return patentState;
- }
- public void setPatentState(Integer patentState) {
- this.patentState = patentState;
- }
- public Integer getAnnualFeeState() {
- return annualFeeState;
- }
- public void setAnnualFeeState(Integer annualFeeState) {
- this.annualFeeState = annualFeeState;
- }
- public Date getAuthorizedDate() {
- return authorizedDate;
- }
- public void setAuthorizedDate(Date authorizedDate) {
- this.authorizedDate = authorizedDate;
- }
-
-
- //authorizedDate
- public String getAuthorizedDateFormattedDate(){
- if (this.authorizedDate == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getAuthorizedDate(), AFTConstants.YYYYMMDD);
- }
- }
-
- public void setAuthorizedDateFormattedDate(String authorizedDateFormattedDate){
-
- }
-
-
-
-
- }
|