|
@@ -395,6 +395,17 @@ public class ExcutePatentDataStar implements IExcutePatentData {
|
|
|
}
|
|
|
uploadParamsVO.setPatentSimpleStatus(starPatent.getSimpleStatus());
|
|
|
uploadParamsVO.setSimpleStatus(starPatent.getSimpleStatus());
|
|
|
+ //装载专利类型
|
|
|
+ Integer patentType = starPatent.getPatentType();
|
|
|
+ if (patentType != null) {
|
|
|
+ if (patentType.equals(2) || patentType.equals(9)) {
|
|
|
+ uploadParamsVO.getPatent().setType(1); //实用新型
|
|
|
+ } else if (patentType.equals(1) || patentType.equals(8)) {
|
|
|
+ uploadParamsVO.getPatent().setType(2); //发明
|
|
|
+ } else if (patentType.equals(3)) {
|
|
|
+ uploadParamsVO.getPatent().setType(3); //外观设计
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
//以下 ↓装载的是调用"获得中国专利著录"接口返回的专利相关数据
|
|
@@ -685,6 +696,7 @@ public class ExcutePatentDataStar implements IExcutePatentData {
|
|
|
uploadParamsVO.setFileDTO(fileDTO);
|
|
|
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* 下载指定多个专利号专利
|
|
|
*
|