Browse Source

新增有效数概念

anderx 3 months ago
parent
commit
8f1234adef

File diff suppressed because it is too large
+ 120 - 5
src/main/java/com/goafanti/common/mapper/UserMapper.xml


+ 26 - 2
src/main/java/com/goafanti/common/model/User.java

@@ -7,7 +7,7 @@ import java.util.Date;
  * (User)实体类
  *
  * @author makejava
- * @since 2025-03-21 16:37:40
+ * @since 2025-09-22 11:15:07
  */
 public class User implements  AftUser{
     private static final long serialVersionUID = 896145436195951740L;
@@ -202,7 +202,7 @@ public class User implements  AftUser{
      */
     private Date clueTransferTime;
     /**
-     * 客户性质0=其他,1=政府机构,2=科研院所,3=高等院校,4=国有企业,5=民营企业,6=社会团体
+     * 客户性质 0=其他,1=政府机构,2=科研院所,3=高等院校,4=社会团体,5=企业
      */
     private Integer nature;
     /**
@@ -217,6 +217,14 @@ public class User implements  AftUser{
      * 上市 0=否,1=是
      */
     private Integer listedNature;
+    /**
+     * 新客户 0=是,1=否
+     */
+    private Integer newUser;
+    /**
+     * 私有有效标识 0=否,1=是
+     */
+    private Integer privateValid;
 
 
     public String getId() {
@@ -635,5 +643,21 @@ public class User implements  AftUser{
         this.listedNature = listedNature;
     }
 
+    public Integer getNewUser() {
+        return newUser;
+    }
+
+    public void setNewUser(Integer newUser) {
+        this.newUser = newUser;
+    }
+
+    public Integer getPrivateValid() {
+        return privateValid;
+    }
+
+    public void setPrivateValid(Integer privateValid) {
+        this.privateValid = privateValid;
+    }
+
 }