CustomerInfoFollow.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package com.ygj.yuemum.domain.customer;
  2. import java.io.Serializable;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import lombok.Data;
  5. import org.springframework.format.annotation.DateTimeFormat;
  6. import java.util.Date;
  7. /**
  8. * customer_info_follow
  9. * @author zrz 2020-06-19
  10. */
  11. @Data
  12. public class CustomerInfoFollow implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * id
  16. */
  17. private Integer id;
  18. /**
  19. * 创建时间
  20. */
  21. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  22. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  23. private Date create_date;
  24. /**
  25. * 跟进方式
  26. */
  27. private String follow_mehtod;
  28. /**
  29. * 客户姓名
  30. */
  31. private String fb_customer_name;
  32. /**
  33. * 用户电话
  34. */
  35. private String fb_customer_phone;
  36. /**
  37. * 渠道来源
  38. */
  39. private String source_channel;
  40. /**
  41. * 预产期
  42. */
  43. private Date edc_date;
  44. /**
  45. * 跟进状态
  46. */
  47. private String follow_state;
  48. /**
  49. * 位置
  50. */
  51. private String address;
  52. /**
  53. * 跟进情况描述
  54. */
  55. private String follow_desc;
  56. /**
  57. * 相关照片
  58. */
  59. private String photos;
  60. /**
  61. * 下次跟进时间
  62. */
  63. @DateTimeFormat(pattern = "yyyy-MM-dd")
  64. @JsonFormat(pattern = "yyyy-MM-dd")
  65. private Date next_follow_date;
  66. private String create_person;
  67. private Date fb_date;
  68. public CustomerInfoFollow() {
  69. }
  70. }