CompanyContactPageVO.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.simuwang.base.pojo.vo;
  2. import lombok.Data;
  3. @Data
  4. public class CompanyContactPageVO {
  5. /**
  6. * 主键ID
  7. */
  8. private Integer id;
  9. /**
  10. * 公司ID
  11. */
  12. private String companyId;
  13. /**
  14. * 对接日期
  15. */
  16. private String contactDate;
  17. /**
  18. * 对接人
  19. */
  20. private String contactor;
  21. /**
  22. * 客户经理
  23. */
  24. private String customerManager;
  25. private String contactName;
  26. /**
  27. * 联系人ID
  28. */
  29. private Integer contactId;
  30. /**
  31. * 对接状态,1-已通知,2-有意向,3-暂无意向,4-考虑中,5-无联系方式
  32. */
  33. private Integer contactStatus;
  34. /**
  35. * 签约方式,1-托管平台授权,2-单方签约,3-双方签约
  36. */
  37. private Integer signMethod;
  38. /**
  39. * 对接备注
  40. */
  41. private String contactRemark;
  42. /**
  43. * 附件名称
  44. */
  45. private String fileName;
  46. /**
  47. * 附件路径
  48. */
  49. private String filePath;
  50. private Integer fileId;
  51. /**
  52. * 职位
  53. */
  54. private String contactPosition;
  55. private String contactPhone;
  56. private String contactWechat;
  57. private String contactEmail;
  58. /**
  59. * 创建人
  60. */
  61. private Integer creatorId;
  62. /**
  63. * 创建时间
  64. */
  65. private String createTime;
  66. /**
  67. * 修改人
  68. */
  69. private Integer updaterId;
  70. /**
  71. * 修改时间
  72. */
  73. private String updateTime;
  74. /**
  75. * 有效标识
  76. */
  77. private Integer isvalid;
  78. }