|
|
@@ -7,7 +7,7 @@ import java.util.Date;
|
|
|
* (User)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2024-11-29 09:00:24
|
|
|
+ * @since 2024-12-02 11:37:11
|
|
|
*/
|
|
|
public class User implements AftUser{
|
|
|
private static final long serialVersionUID = 896145436195951740L;
|
|
|
@@ -186,7 +186,7 @@ public class User implements AftUser{
|
|
|
*/
|
|
|
private Integer clueStatus;
|
|
|
/**
|
|
|
- * 线索客户 0=待分配,1=已回退
|
|
|
+ * 线索客户 0=待分配,1=已分配,2=已回退,3=待处理,4=已领取
|
|
|
*/
|
|
|
private Integer clueProcess;
|
|
|
/**
|
|
|
@@ -197,6 +197,10 @@ public class User implements AftUser{
|
|
|
* 线索录入人
|
|
|
*/
|
|
|
private String clueAid;
|
|
|
+ /**
|
|
|
+ * 线索转交时间
|
|
|
+ */
|
|
|
+ private Date clueTransferTime;
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
@@ -575,5 +579,13 @@ public class User implements AftUser{
|
|
|
this.clueAid = clueAid;
|
|
|
}
|
|
|
|
|
|
+ public Date getClueTransferTime() {
|
|
|
+ return clueTransferTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClueTransferTime(Date clueTransferTime) {
|
|
|
+ this.clueTransferTime = clueTransferTime;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|