|
|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|