Browse Source

新增线索客户

anderx 1 year ago
parent
commit
f1a84fb5cf

+ 1 - 1
src/main/java/com/goafanti/common/dao/UserMapper.java

@@ -24,7 +24,7 @@ import java.util.Map;
  * (User)表数据库访问层
  *
  * @author makejava
- * @since 2024-11-28 15:11:05
+ * @since 2024-11-28 15:18:27
  */
 public interface UserMapper {
 

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


+ 13 - 1
src/main/java/com/goafanti/common/model/User.java

@@ -7,7 +7,7 @@ import java.util.Date;
  * (User)实体类
  *
  * @author makejava
- * @since 2024-11-28 15:11:06
+ * @since 2024-11-28 15:18:27
  */
 public class User implements  AftUser{
     private static final long serialVersionUID = 896145436195951740L;
@@ -185,6 +185,10 @@ public class User implements  AftUser{
      * 线索客户 0=否,1=是
      */
     private Integer clueStatus;
+    /**
+     * 线索客户 0=待分配,1=已回退
+     */
+    private Integer clueProcess;
 
 
     public String getId() {
@@ -539,5 +543,13 @@ public class User implements  AftUser{
         this.clueStatus = clueStatus;
     }
 
+    public Integer getClueProcess() {
+        return clueProcess;
+    }
+
+    public void setClueProcess(Integer clueProcess) {
+        this.clueProcess = clueProcess;
+    }
+
 }