|
@@ -262,7 +262,21 @@ public class GetPatentFromExcelThread extends Thread {
|
|
patent.setApplicant(patentPeople);
|
|
patent.setApplicant(patentPeople);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
+ List<String> rightNames = uploadParamsVO.getPatentApplicantCurrentName();
|
|
|
|
|
|
|
|
+ //申请人
|
|
|
|
+ if (rightNames != null && rightNames.size() != 0) {
|
|
|
|
+ List<PatentPerson> patentPeople = new ArrayList<>();
|
|
|
|
+ for (int i = 0; i < rightNames.size(); i++) {
|
|
|
|
+ PatentPerson patentPerson = new PatentPerson();
|
|
|
|
+ patentPerson.setOrder(i + 1);
|
|
|
|
+ patentPerson.setType("1");
|
|
|
|
+ patentPerson.setName(rightNames.get(i));
|
|
|
|
+ patentPeople.add(patentPerson);
|
|
|
|
+ }
|
|
|
|
+ patent.setRightHolder(patentPeople);
|
|
|
|
+
|
|
|
|
+ }
|
|
List<String> ipcList = uploadParamsVO.getIpcList();
|
|
List<String> ipcList = uploadParamsVO.getIpcList();
|
|
String mainIpc = uploadParamsVO.getMainIpc();
|
|
String mainIpc = uploadParamsVO.getMainIpc();
|
|
//装载IPC分类号
|
|
//装载IPC分类号
|