|
@@ -234,8 +234,8 @@ public class EsPatentService {
|
|
|
List<PatentMergePerson> list = new ArrayList<>();
|
|
|
for (Hit<Patent> hit : hits) {
|
|
|
Patent patent = hit.source();
|
|
|
- if (!CollectionUtils.isEmpty(patent.getMergeApplicant())) {
|
|
|
- list.addAll(patent.getMergeApplicant());
|
|
|
+ if (!CollectionUtils.isEmpty(patent.getMergeRightHolder())) {
|
|
|
+ list.addAll(patent.getMergeRightHolder());
|
|
|
}
|
|
|
}
|
|
|
List<String> data = new ArrayList<>();
|
|
@@ -263,8 +263,8 @@ public class EsPatentService {
|
|
|
List<PatentMergePerson> list = new ArrayList<>();
|
|
|
for (Hit<Patent> hit : hits) {
|
|
|
Patent patent = hit.source();
|
|
|
- if (!CollectionUtils.isEmpty(patent.getMergeApplicant())) {
|
|
|
- list.addAll(patent.getMergeApplicant());
|
|
|
+ if (!CollectionUtils.isEmpty(patent.getMergeInventor())) {
|
|
|
+ list.addAll(patent.getMergeInventor());
|
|
|
}
|
|
|
}
|
|
|
List<String> data = new ArrayList<>();
|