소스 검색

更新企业档案与面谈接口修改

anderx 11 달 전
부모
커밋
3936738329
2개의 변경된 파일27개의 추가작업 그리고 10개의 파일을 삭제
  1. 13 8
      src/main/java/com/goafanti/common/mapper/UserArchivesMapper.xml
  2. 14 2
      src/main/java/com/goafanti/common/model/UserArchives.java

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 13 - 8
src/main/java/com/goafanti/common/mapper/UserArchivesMapper.xml


+ 14 - 2
src/main/java/com/goafanti/common/model/UserArchives.java

@@ -11,10 +11,10 @@ import java.util.Date;
  * 客户档案表(UserArchives)实体类
  *
  * @author makejava
- * @since 2025-04-11 09:39:23
+ * @since 2025-04-16 10:04:46
  */
 public class UserArchives implements Serializable {
-    private static final long serialVersionUID = 907641518706679781L;
+    private static final long serialVersionUID = 354421259089616603L;
 
     private Integer id;
 
@@ -123,6 +123,10 @@ public class UserArchives implements Serializable {
      * 财务数据-研发费用(万元)
      */
     private BigDecimal financialRd;
+    /**
+     * 标准 0=无,1=有
+     */
+    private Integer standard;
 
 
     public Integer getId() {
@@ -351,5 +355,13 @@ public class UserArchives implements Serializable {
         this.financialRd = financialRd;
     }
 
+    public Integer getStandard() {
+        return standard;
+    }
+
+    public void setStandard(Integer standard) {
+        this.standard = standard;
+    }
+
 }