|
@@ -81,13 +81,17 @@ public class ImportSinglePatentService {
|
|
|
public StarPatentVO getPatentFromWeb(String patentNo) {
|
|
|
StarPatentVO starPatentVO = null;
|
|
|
String dbType = "";
|
|
|
+ String conditions = "AN=(" + patentNo + ") OR PN=(" + patentNo + ") OR GN=(" + patentNo + ")";
|
|
|
+
|
|
|
if (patentNo.startsWith("CN")) {
|
|
|
dbType = "CN";
|
|
|
} else {
|
|
|
dbType = "WD";
|
|
|
+ conditions = "PN=(" + patentNo + ") OR GN=(" + patentNo + ")";
|
|
|
+
|
|
|
}
|
|
|
//根据专利号查询
|
|
|
- String conditions = "AN=(" + patentNo + ") OR PN=(" + patentNo + ") OR GN=(" + patentNo + ")";
|
|
|
+
|
|
|
PatentStarListDTO patentStarListDTO1 = new PatentStarListDTO();
|
|
|
patentStarListDTO1.setCurrentQuery(conditions);
|
|
|
patentStarListDTO1.setPageNum(1);
|