|
@@ -0,0 +1,37 @@
|
|
|
+package cn.cslg.pas.controller.novelty;
|
|
|
+
|
|
|
+import cn.cslg.pas.common.core.base.Constants;
|
|
|
+import cn.cslg.pas.common.dto.business.AsInvalidReasonHistoryDTO;
|
|
|
+import cn.cslg.pas.common.dto.business.OtherPatentInfoDTO;
|
|
|
+import cn.cslg.pas.common.model.cronModel.Records;
|
|
|
+import cn.cslg.pas.common.utils.Response;
|
|
|
+import cn.cslg.pas.service.business.AsInvalidReasonHistoryService;
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 作为无效证据使用历史
|
|
|
+ * @Author xiexiang
|
|
|
+ * @Date 2024/1/19
|
|
|
+ */
|
|
|
+@Slf4j
|
|
|
+@RequestMapping(Constants.API_XiaoSHI + "/noveltyMark")
|
|
|
+@RestController
|
|
|
+public class NoveltyMarkController {
|
|
|
+ @Autowired
|
|
|
+ private AsInvalidReasonHistoryService asInvalidReasonHistoryService;
|
|
|
+ @Operation(summary = "查询作为无效证据使用历史")
|
|
|
+ @PostMapping("/edit")
|
|
|
+ private void addNoveltyMark(){
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+}
|