CompanyContactInfoVO.java 1.5 KB

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