liyong
2026-04-20 54b00a3d2964dd7213f6f4baeb3bcd6222906e51
src/main/java/com/ruoyi/basic/pojo/CustomerFollowUp.java
@@ -8,6 +8,7 @@
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;
@@ -34,9 +35,9 @@
    private Integer id;
    /**
     * 关联的客户ID
     * 关联的私海id
     */
    private Integer customerId;
    private Long customerPrivatePoolId;
    /**
     * 跟进方式
@@ -52,6 +53,7 @@
     * 跟进时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime followUpTime;
    /**