12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package com.ygj.yuemum.domain.customer;
- import java.io.Serializable;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.util.Date;
- /**
- * customer_info_follow
- * @author zrz 2020-06-19
- */
- @Data
- public class CustomerInfoFollow implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * id
- */
- private Integer id;
- /**
- * 创建时间
- */
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date create_date;
- /**
- * 跟进方式
- */
- private String follow_mehtod;
- /**
- * 客户姓名
- */
- private String fb_customer_name;
- /**
- * 用户电话
- */
- private String fb_customer_phone;
- /**
- * 渠道来源
- */
- private String source_channel;
- /**
- * 预产期
- */
- private Date edc_date;
- /**
- * 跟进状态
- */
- private String follow_state;
- /**
- * 位置
- */
- private String address;
- /**
- * 跟进情况描述
- */
- private String follow_desc;
- /**
- * 相关照片
- */
- private String photos;
- /**
- * 下次跟进时间
- */
- @DateTimeFormat(pattern = "yyyy-MM-dd")
- @JsonFormat(pattern = "yyyy-MM-dd")
- private Date next_follow_date;
- private String create_person;
- private Date fb_date;
- public CustomerInfoFollow() {
- }
- }
|