Quellcode durchsuchen

Merge remote-tracking branch 'origin/dev' into dev

# Conflicts:
#	src/main/java/com/example/demo/controller/AssoTaskPersonelController.java
#	src/main/java/com/example/demo/model/dto/WebQueryDTO.java
#	src/main/java/com/example/demo/service/UploadFromWebService.java
lwhhszx vor 2 Jahren
Ursprung
Commit
eb7563e19e
2 geänderte Dateien mit 90 neuen und 83 gelöschten Zeilen
  1. 0 4
      pom.xml
  2. 90 79
      src/main/java/com/example/demo/domain/PatentCell.java

+ 0 - 4
pom.xml

@@ -89,10 +89,6 @@
         </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-web</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-quartz</artifactId>
         </dependency>
         <dependency>

+ 90 - 79
src/main/java/com/example/demo/domain/PatentCell.java

@@ -1,147 +1,159 @@
 package com.example.demo.domain;
 
 
-import com.baomidou.mybatisplus.annotation.TableField;
 import lombok.Data;
+import lombok.experimental.Accessors;
 
-import java.util.Date;
 import java.util.List;
 
 /**
- * <p>
- * 管理员表
- * </p>
- *
- * @author 王岩
- * @since 2022-03-25
+ * 数据库中的表对应的类
  */
+@Accessors(chain = true)
 @Data
-
-/*数据库中的表对应的类
- */
 public class PatentCell {
-
     /**
      * 管理员用户名
      */
     private String patentNo;
     private String title;
+    /**
+     * 申请日
+     */
     private String applications;
     private String legal;
     private String url;
     private String abstrc;
+    /**
+     * 摘要附图路径
+     */
     private String picUrl;
-    /*
-    申请号
+    /**
+     * 申请号
      */
     private String applicationNo;
-/*
-专题库id
- */
+    /**
+     * 专题库id
+     */
     private Integer projectId;
-    /*
-报告id
- */
+    /**
+     * 报告id
+     */
     private Integer reportId;
+    /**
+     * 国家/省市
+     */
     private String country;
+    /**
+     * 申请日
+     */
     private String applicationDate;
+    /**
+     * 公开日
+     */
     private String pubilcDate;
-    /*
-    公开授权号
+    /**
+     * 公开授权号/授权公告号
      */
     private String publicAccreditNo;
-    /*
-公开授权日
+    /**
+     * 公开授权日/授权公告日
      */
     private String publicAccreditDate;
-    /*
-    主分类号
+    /**
+     * 主分类号
      */
     private String mainIpc;
-    /*
-      分类号
-       */
+    /**
+     * 分类号
+     */
     private List<String> ipc;
-    /*
-    申请人
+    /**
+     * 申请人
      */
     private List<String> applicationPersons;
-    /*
-申请人地址
- */
+    /**
+     * 申请人地址
+     */
     private List<String> applicationAddress;
-    /*
-  发明人
-   */
+    /**
+     * 发明人
+     */
     private List<String> inventors;
-
-    /*
-    当前权利人
+    /**
+     * 当前权利人
      */
     private List<String> applicationCurrents;
     private List<String> applicationCurrentAddress;
-    /*
-    范畴分类
+    /**
+     * 范畴分类
      */
     private String classical;
-    /*
-    状态
+    /**
+     * 状态/当前状态
      */
     private String statue;
-
-    /*
-    摘要
+    /**
+     * 摘要
      */
-    private  String abstrText;
-
-    /*
-    主权要
+    private String abstrText;
+    /**
+     * 主权要
      */
     private String mainRignt;
-
-    /*
-    权要
+    /**
+     * 权要
      */
     private List<String> rights;
-
-    /*
-        PDF文档路径
-         */
+    /**
+     * PDF文档路径
+     */
     private String PDFUrl;
-
-    /*
-   PDF文档大小
-    */
+    /**
+     * PDF文档大小
+     */
     private Long PDFSize;
     private String PDFName;
     private UploadFileDTO pdf;
-    /*
-    说明书
+    /**
+     * 说明书
      */
     private String patentInstructionText;
-    /*
-   公开号
+    /**
+     * 公开号
      */
     private String publicNo;
-    /*
-    代理机构
+    /**
+     * 代理机构
+     */
+    private String agency;
+    /**
+     * 代理人
      */
-   private  String agency;
-   /*
-   代理人
-    */
     private List<String> agencyPersons;
-   /*专利法律状态
+    /**
+     * 专利法律状态
+     */
+    List<PatentAffair> patentAffairs;
+    /**
+     * 优先权信息
+     */
+    private String priorityInformation;
+    /**
+     * 预估到期日
+     */
+    private String estimatedMaturityDate;
+    /**
+     * 权要数量
+     */
+    private String rightsNum;
 
-    */
-    List<PatentAffair> patentAffairs ;
     @Data
-    public static  class PatentAffair{
+    public static class PatentAffair {
         /**
          * 法律状态
          */
         private String status;
-
         /**
          * 发生日期
          */
@@ -149,9 +161,8 @@ public class PatentCell {
         /**
          * 简单法律状态
          */
-
         private String simpleStatus;
 
-
     }
+
 }