|
@@ -20,6 +20,7 @@ import lombok.RequiredArgsConstructor;
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
+import java.text.ParseException;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Arrays;
|
|
|
import java.util.List;
|
|
@@ -85,7 +86,7 @@ public class SystemController {
|
|
|
|
|
|
@PostMapping("/patentCellTODb")
|
|
|
@Operation(summary = "专利上传到数据库")
|
|
|
- public String getPatentDTOListForRMS(@RequestBody PatentCell patentCell) {
|
|
|
+ public String getPatentDTOListForRMS(@RequestBody PatentCell patentCell) throws ParseException {
|
|
|
uploadPatentBatchService.dataToDBCell(patentCell);
|
|
|
return Response.success();
|
|
|
|