| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 关联的客户ID |
| | | * 关联的私海id |
| | | */ |
| | | private Integer customerId; |
| | | private Long customerPrivatePoolId; |
| | | |
| | | /** |
| | | * 跟进方式 |
| | |
| | | * 跟进时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime followUpTime; |
| | | |
| | | /** |