|
@@ -49,7 +49,7 @@ import java.util.stream.Collectors;
|
|
|
@Service
|
|
|
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
|
|
|
public class PatentService extends ServiceImpl<PatentMapper, Patent> {
|
|
|
-
|
|
|
+ private final PatentMapper patentMapper;
|
|
|
private final PatentApplicantService patentApplicantService;
|
|
|
private final PatentApplicantLinkService applicantAttributeService;
|
|
|
private final ProjectPatentLinkService projectPatentLinkService;
|
|
@@ -1324,5 +1324,10 @@ public String getComPantentNos(PatentVO params){
|
|
|
|
|
|
return Response.success(patentNos);
|
|
|
}
|
|
|
+ public String getPagination(List<String> list){
|
|
|
+ return null;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|