|
@@ -7,6 +7,7 @@ import lombok.NoArgsConstructor;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
*
|
|
@@ -62,4 +63,262 @@ public class Patent {
|
|
|
@JsonProperty("examination_date")
|
|
|
private Date examinationDate;
|
|
|
|
|
|
+ /**
|
|
|
+ * 公开号
|
|
|
+ */
|
|
|
+ @JsonProperty("public_no")
|
|
|
+ private String publicNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公开日
|
|
|
+ */
|
|
|
+ @JsonProperty("public_date")
|
|
|
+ private Date publicDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 授权号
|
|
|
+ */
|
|
|
+ @JsonProperty("grant_no")
|
|
|
+ private Date grantNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 授权日
|
|
|
+ */
|
|
|
+ @JsonProperty("grant_date")
|
|
|
+ private Date grantDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 优先权
|
|
|
+ */
|
|
|
+ @JsonProperty("priorities")
|
|
|
+ private List<Priorities> priorities;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 受理局
|
|
|
+ */
|
|
|
+ @JsonProperty("bureau")
|
|
|
+ private String bureau;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * IPC分类号(主)
|
|
|
+ */
|
|
|
+ @JsonProperty("mipc")
|
|
|
+ private LevelsFive mipc ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ipc集合
|
|
|
+ */
|
|
|
+ @JsonProperty("ipc")
|
|
|
+ private List<LevelsFive> ipc ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * CPC分类号(主)
|
|
|
+ */
|
|
|
+ @JsonProperty("mcpc")
|
|
|
+ private LevelsFive mcpc ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cpc集合
|
|
|
+ */
|
|
|
+ @JsonProperty("cpc")
|
|
|
+ private List<LevelsFive> cpc ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * UPC分类号(主)
|
|
|
+ */
|
|
|
+ @JsonProperty("mupc")
|
|
|
+ private LevelsTwo mupc ;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * UPC集合
|
|
|
+ */
|
|
|
+ @JsonProperty("upc")
|
|
|
+ private List<LevelsTwo> upc ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * UPC分类号(主)
|
|
|
+ */
|
|
|
+ @JsonProperty("mloc")
|
|
|
+ private LevelsTwo mloc ;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * UPC集合
|
|
|
+ */
|
|
|
+ @JsonProperty("loc")
|
|
|
+ private List<LevelsTwo> loc ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 专利状态
|
|
|
+ */
|
|
|
+ @JsonProperty("simple_status")
|
|
|
+ private String simpleStatus ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 权利要求
|
|
|
+ */
|
|
|
+ @JsonProperty("claim")
|
|
|
+ private String claim ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 权利要求(译)
|
|
|
+ */
|
|
|
+ @JsonProperty("claim_out")
|
|
|
+ private String claimOut ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * pct申请号
|
|
|
+ */
|
|
|
+ @JsonProperty("pctappdate")
|
|
|
+ private String pctAppDate ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * pct申请日
|
|
|
+ */
|
|
|
+ @JsonProperty("pctappno")
|
|
|
+ private String pctAppNo ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * pct进入日期
|
|
|
+ */
|
|
|
+ @JsonProperty("pctenterdate")
|
|
|
+ private Date pctEnterDate ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * pct公开日
|
|
|
+ */
|
|
|
+ @JsonProperty("pctpubdate")
|
|
|
+ private Date pctPubDate ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * pct公开号
|
|
|
+ */
|
|
|
+ @JsonProperty("pctpubno")
|
|
|
+ private String pctPubNo ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * wo指定国
|
|
|
+ */
|
|
|
+ @JsonProperty("wo")
|
|
|
+ private String wo ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ep申请号
|
|
|
+ */
|
|
|
+ @JsonProperty("ep_no")
|
|
|
+ private String epNo ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ep申请日
|
|
|
+ */
|
|
|
+ @JsonProperty("ep_date")
|
|
|
+ private String epDate ;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * EP指定国状态
|
|
|
+ */
|
|
|
+ @JsonProperty("ep_status")
|
|
|
+ private String epStatus ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 申请人
|
|
|
+ */
|
|
|
+ @JsonProperty("applicant")
|
|
|
+ private List<Applicant> applicant ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 申请人数量
|
|
|
+ */
|
|
|
+ @JsonProperty("applicants_num")
|
|
|
+ private Integer applicantsNum ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 权利人
|
|
|
+ */
|
|
|
+ @JsonProperty("right_holder")
|
|
|
+ private List<RightHolder> rightHolder ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 权利人数量
|
|
|
+ */
|
|
|
+ @JsonProperty("right_holder_num")
|
|
|
+ private Integer rightHolderNum ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发明人
|
|
|
+ */
|
|
|
+ @JsonProperty("inventor")
|
|
|
+ private List<Inventor> inventor ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发明人数量
|
|
|
+ */
|
|
|
+ @JsonProperty("inventor_num")
|
|
|
+ private Integer inventor_num ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 代理机构
|
|
|
+ */
|
|
|
+ @JsonProperty("agency")
|
|
|
+ private String agency ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 代理机构编号
|
|
|
+ */
|
|
|
+ @JsonProperty("agency_no")
|
|
|
+ private String agencyNo ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 代理人
|
|
|
+ */
|
|
|
+ @JsonProperty("agent")
|
|
|
+ private List<String> agent;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 引用专利数量
|
|
|
+ */
|
|
|
+ @JsonProperty("quote_patent_no_num")
|
|
|
+ private Integer quotePatentNoNum ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 被引用专利数量
|
|
|
+ */
|
|
|
+ @JsonProperty("quoted_patent_no_num")
|
|
|
+ private Integer quotedPatentNoNum ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 扩展同族数量
|
|
|
+ */
|
|
|
+ @JsonProperty("patsnap_family_num")
|
|
|
+ private Integer patsnapFamilyNum ;
|
|
|
+ /**
|
|
|
+ * 扩展同族id
|
|
|
+ */
|
|
|
+ @JsonProperty("patsnap_family_id")
|
|
|
+ private String patsnapFamilyId ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * INPADOC同族数量
|
|
|
+ */
|
|
|
+ @JsonProperty("inpadoc_family_num")
|
|
|
+ private Integer inpadocFamilyNum ;
|
|
|
+ /**
|
|
|
+ * INPADOC同族id
|
|
|
+ */
|
|
|
+ @JsonProperty("inpadoc_family_id")
|
|
|
+ private String inpadocFamilyId ;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 简单同族数量
|
|
|
+ */
|
|
|
+ @JsonProperty("simple_family_num")
|
|
|
+ private Integer simpleFamilyNum ;
|
|
|
+ /**
|
|
|
+ * 简单同族id
|
|
|
+ */
|
|
|
+ @JsonProperty("simple_family_id")
|
|
|
+ private String simpleFamilyId ;
|
|
|
}
|