|
@@ -4,39 +4,37 @@ import java.util.Date;
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.time.DateFormatUtils;
|
|
import org.apache.commons.lang3.time.DateFormatUtils;
|
|
|
|
|
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 待缴费专利管理
|
|
* 待缴费专利管理
|
|
|
*/
|
|
*/
|
|
|
public class PatentPendingBo {
|
|
public class PatentPendingBo {
|
|
|
- private String uid;
|
|
|
|
|
-
|
|
|
|
|
- private String oid;
|
|
|
|
|
-
|
|
|
|
|
- private String pid;
|
|
|
|
|
-
|
|
|
|
|
- private String cid;
|
|
|
|
|
-
|
|
|
|
|
- private Integer serialNumber;
|
|
|
|
|
-
|
|
|
|
|
- private String patentNumber;
|
|
|
|
|
-
|
|
|
|
|
- private Integer locationProvince;
|
|
|
|
|
-
|
|
|
|
|
- private String unitName;
|
|
|
|
|
-
|
|
|
|
|
- private Integer patentCatagory;
|
|
|
|
|
-
|
|
|
|
|
- private String patentName;
|
|
|
|
|
-
|
|
|
|
|
- private Integer patentState;
|
|
|
|
|
-
|
|
|
|
|
- private Integer annualFeeState;
|
|
|
|
|
-
|
|
|
|
|
- private Date authorizedDate;
|
|
|
|
|
|
|
+ private String uid;
|
|
|
|
|
+
|
|
|
|
|
+ private String oid;
|
|
|
|
|
+
|
|
|
|
|
+ private String pid;
|
|
|
|
|
+
|
|
|
|
|
+ private String cid;
|
|
|
|
|
+
|
|
|
|
|
+ private Integer serialNumber;
|
|
|
|
|
+
|
|
|
|
|
+ private String patentNumber;
|
|
|
|
|
+
|
|
|
|
|
+ private Integer locationProvince;
|
|
|
|
|
+
|
|
|
|
|
+ private String unitName;
|
|
|
|
|
+
|
|
|
|
|
+ private Integer patentCatagory;
|
|
|
|
|
+
|
|
|
|
|
+ private String patentName;
|
|
|
|
|
+
|
|
|
|
|
+ private Integer patentState;
|
|
|
|
|
+
|
|
|
|
|
+ private Integer annualFeeState;
|
|
|
|
|
+
|
|
|
|
|
+ private Date authorizedDate;
|
|
|
|
|
|
|
|
public String getUid() {
|
|
public String getUid() {
|
|
|
return uid;
|
|
return uid;
|
|
@@ -61,7 +59,7 @@ public class PatentPendingBo {
|
|
|
public void setPid(String pid) {
|
|
public void setPid(String pid) {
|
|
|
this.pid = pid;
|
|
this.pid = pid;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
public String getCid() {
|
|
public String getCid() {
|
|
|
return cid;
|
|
return cid;
|
|
|
}
|
|
}
|
|
@@ -70,7 +68,6 @@ public class PatentPendingBo {
|
|
|
this.cid = cid;
|
|
this.cid = cid;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
public Integer getSerialNumber() {
|
|
public Integer getSerialNumber() {
|
|
|
return serialNumber;
|
|
return serialNumber;
|
|
|
}
|
|
}
|
|
@@ -87,7 +84,6 @@ public class PatentPendingBo {
|
|
|
this.patentNumber = patentNumber;
|
|
this.patentNumber = patentNumber;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- @JsonFormat(shape = Shape.STRING)
|
|
|
|
|
public Integer getLocationProvince() {
|
|
public Integer getLocationProvince() {
|
|
|
return locationProvince;
|
|
return locationProvince;
|
|
|
}
|
|
}
|
|
@@ -143,22 +139,18 @@ public class PatentPendingBo {
|
|
|
public void setAuthorizedDate(Date authorizedDate) {
|
|
public void setAuthorizedDate(Date authorizedDate) {
|
|
|
this.authorizedDate = authorizedDate;
|
|
this.authorizedDate = authorizedDate;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- //authorizedDate
|
|
|
|
|
- public String getAuthorizedDateFormattedDate(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ // authorizedDate
|
|
|
|
|
+ public String getAuthorizedDateFormattedDate() {
|
|
|
if (this.authorizedDate == null) {
|
|
if (this.authorizedDate == null) {
|
|
|
return null;
|
|
return null;
|
|
|
} else {
|
|
} else {
|
|
|
return DateFormatUtils.format(this.getAuthorizedDate(), AFTConstants.YYYYMMDDHHMMSS);
|
|
return DateFormatUtils.format(this.getAuthorizedDate(), AFTConstants.YYYYMMDDHHMMSS);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- public void setAuthorizedDateFormattedDate(String authorizedDateFormattedDate){
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setAuthorizedDateFormattedDate(String authorizedDateFormattedDate) {
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
}
|
|
}
|