|
|
@@ -7,7 +7,7 @@ import java.util.Date;
|
|
|
* (User)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2024-11-28 15:18:27
|
|
|
+ * @since 2024-11-28 15:31:51
|
|
|
*/
|
|
|
public class User implements AftUser{
|
|
|
private static final long serialVersionUID = 896145436195951740L;
|
|
|
@@ -189,6 +189,10 @@ public class User implements AftUser{
|
|
|
* 线索客户 0=待分配,1=已回退
|
|
|
*/
|
|
|
private Integer clueProcess;
|
|
|
+ /**
|
|
|
+ * 线索导入时间
|
|
|
+ */
|
|
|
+ private Date clueTime;
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
@@ -551,5 +555,13 @@ public class User implements AftUser{
|
|
|
this.clueProcess = clueProcess;
|
|
|
}
|
|
|
|
|
|
+ public Date getClueTime() {
|
|
|
+ return clueTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClueTime(Date clueTime) {
|
|
|
+ this.clueTime = clueTime;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|