|
@@ -41,7 +41,7 @@ public class ReportAffairController {
|
|
|
@Autowired
|
|
|
private ReportAffairCasePhaseService reportAffairCasePhaseService;
|
|
|
|
|
|
- @Operation(summary = "上传无效请求书")
|
|
|
+ @Operation(summary = "添加请求人无效请求书")
|
|
|
@PostMapping("/addInvalidRequestFile")
|
|
|
public Response addInvalidRequestFile(@RequestBody AddInvalidRequestFileDTO addInvalidRequestFileDTO) throws Exception {
|
|
|
Integer id = invalidRequestFileService.add(addInvalidRequestFileDTO);
|
|
@@ -50,7 +50,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改无效请求书")
|
|
|
+ @Operation(summary = "修改请求人无效请求书")
|
|
|
@PostMapping("/updateInvalidRequestFile")
|
|
|
public Response updateInvalidRequestFile(@RequestBody UpdateInvalidRequestFileDTO updateInvalidRequestFileDTO) throws Exception {
|
|
|
Integer id = invalidRequestFileService.update(updateInvalidRequestFileDTO);
|
|
@@ -81,7 +81,7 @@ public class ReportAffairController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传口审记录")
|
|
|
+ @Operation(summary = "添加合议组口审通知书||添加口审记录")
|
|
|
@PostMapping("/addOralTrail")
|
|
|
public Response addOralTrail(@RequestBody AddOralTrailDTO addOralTrailDTO) throws Exception {
|
|
|
Integer id = oralTrailService.add(addOralTrailDTO);
|
|
@@ -90,7 +90,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改口审记录")
|
|
|
+ @Operation(summary = "修改合议组口审通知书||修改口审记录")
|
|
|
@PostMapping("/updateOralTrail")
|
|
|
public Response updateOralTrail(@RequestBody UpdateOralTrailDTO updateOralTrailDTO) throws Exception {
|
|
|
Integer id = oralTrailService.update(updateOralTrailDTO);
|
|
@@ -99,7 +99,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传无效决定书")
|
|
|
+ @Operation(summary = "添加合议组无效决定")
|
|
|
@PostMapping("/addInvalidDecisionFile")
|
|
|
public Response addInvalidDecisionFile(@RequestBody AddInvalidDecisionFileDTO addInvalidDecisionFileDTO) throws Exception {
|
|
|
Integer id = invalidDecisionFileService.add(addInvalidDecisionFileDTO);
|
|
@@ -108,7 +108,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改无效决定书")
|
|
|
+ @Operation(summary = "修改合议组无效决定")
|
|
|
@PostMapping("/updateInvalidDecisionFile")
|
|
|
public Response updateInvalidDecisionFile(@RequestBody UpdateInvalidDecisionFileDTO updateInvalidDecisionFileDTO) throws Exception {
|
|
|
Integer id = invalidDecisionFileService.update(updateInvalidDecisionFileDTO);
|
|
@@ -117,7 +117,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传行政诉讼书")
|
|
|
+ @Operation(summary = "添加原告起诉状")
|
|
|
@PostMapping("/addAdminProceed")
|
|
|
public Response addAdminProceed(@RequestBody AddAdminProceedDTO addAdminProceedDTO) throws Exception {
|
|
|
Integer id = adminProceedService.add(addAdminProceedDTO);
|
|
@@ -126,7 +126,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改行政诉讼书")
|
|
|
+ @Operation(summary = "修改原告起诉状")
|
|
|
@PostMapping("/updateAdminProceed")
|
|
|
public Response updateAdminProceed(@RequestBody UpdateAdminProceedDTO updateAdminProceedDTO) throws Exception {
|
|
|
Integer id = adminProceedService.update(updateAdminProceedDTO);
|
|
@@ -135,7 +135,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传陈述意见书")
|
|
|
+ @Operation(summary = "添加专利权人意见陈述书")
|
|
|
@PostMapping("/addStateOpinion")
|
|
|
public Response addStateOpinion(@RequestBody AddStateOpinionDTO addStateOpinionDTO) throws Exception {
|
|
|
Integer id = reportAffairService.addStateOpinion(addStateOpinionDTO);
|
|
@@ -144,7 +144,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改陈述意见书")
|
|
|
+ @Operation(summary = "修改专利权人意见陈述书")
|
|
|
@PostMapping("/updateStateOpinion")
|
|
|
public Response updateStateOpinion(@RequestBody UpdateStateOpinionDTO updateStateOpinionDTO) throws Exception {
|
|
|
Integer id = reportAffairService.updateStateOpinion(updateStateOpinionDTO);
|
|
@@ -153,7 +153,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传行政诉讼判决书")
|
|
|
+ @Operation(summary = "添加法院行政诉讼判决书")
|
|
|
@PostMapping("/addAdminProceedJudgment")
|
|
|
public Response addAdminProceedJudgment(@RequestBody AddJudgmentDTO addJudgmentDTO) throws Exception {
|
|
|
Integer id = adminProceedService.addJudgment(addJudgmentDTO);
|
|
@@ -162,7 +162,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改行政诉讼判决书")
|
|
|
+ @Operation(summary = "修改法院行政诉讼判决书")
|
|
|
@PostMapping("/updateAdminProceedJudgment")
|
|
|
public Response updateAdminProceedJudgment(@RequestBody UpdateJudgmentDTO updateJudgmentDTO) throws Exception {
|
|
|
Integer id = adminProceedService.updateJudgment(updateJudgmentDTO);
|
|
@@ -171,7 +171,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传权要修改记录")
|
|
|
+ @Operation(summary = "添加专利权人权要修改")
|
|
|
@PostMapping("/addPatentClaimHistory")
|
|
|
public Response addPatentClaimHistory(@RequestBody AddClaimHistoryDTO addClaimHistoryDTO) throws Exception {
|
|
|
Integer id = reportAffairService.addClaimHistory(addClaimHistoryDTO);
|
|
@@ -180,7 +180,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改权要修改记录")
|
|
|
+ @Operation(summary = "修改专利权人权要修改")
|
|
|
@PostMapping("/updatePatentClaimHistory")
|
|
|
public Response updatePatentClaimHistory(@RequestBody UpdateClaimHistoryDTO updateClaimHistoryDTO) throws Exception {
|
|
|
Integer id = reportAffairService.updateClaimHistory(updateClaimHistoryDTO);
|
|
@@ -189,7 +189,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传补充证据")
|
|
|
+ @Operation(summary = "添加请求人补充证据及理由")
|
|
|
@PostMapping("/addSupplyEvidence")
|
|
|
public Response addSupplyEvidence(@RequestBody AddSupplyEvidenceDTO addSupplyEvidenceDTO) throws Exception {
|
|
|
Integer id = reportAffairService.addSupplyEvidence(addSupplyEvidenceDTO);
|
|
@@ -198,7 +198,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "修改补充证据")
|
|
|
+ @Operation(summary = "修改请求人补充证据及理由")
|
|
|
@PostMapping("/updateSupplyEvidence")
|
|
|
public Response updateSupplyEvidence(@RequestBody UpdateSupplyEvidenceDTO updateSupplyEvidenceDTO) throws Exception {
|
|
|
Integer id = reportAffairService.updateSupplyEvidence(updateSupplyEvidenceDTO);
|
|
@@ -207,7 +207,7 @@ public class ReportAffairController {
|
|
|
return Response.success(records);
|
|
|
}
|
|
|
|
|
|
- @Operation(summary = "上传其他文档")
|
|
|
+ @Operation(summary = "添加其他文档")
|
|
|
@PostMapping("/addOtherDocuments")
|
|
|
public Response addOtherDocuments(@RequestBody AddOtherDocumentsDTO addOtherDocumentsDTO) throws Exception {
|
|
|
Integer id = otherDocumentsService.add(addOtherDocumentsDTO);
|