LastCompanyContactInfoDO.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package com.simuwang.base.pojo.dos;
  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. @TableName("last_company_contact_info")
  10. public class LastCompanyContactInfoDO {
  11. /**
  12. * This field was generated by MyBatis Generator.
  13. * This field corresponds to the database column company_cantact_info.id
  14. */
  15. @TableId(value = "id",type = IdType.AUTO)
  16. private Integer id;
  17. /**
  18. * 公司ID
  19. */
  20. @TableField("company_id")
  21. private String companyId;
  22. /**
  23. * This field was generated by MyBatis Generator.
  24. * This field corresponds to the database column company_cantact_info.contact_date
  25. */
  26. @TableField("contact_date")
  27. private Date contactDate;
  28. /**
  29. * This field was generated by MyBatis Generator.
  30. * This field corresponds to the database column company_cantact_info.contactor
  31. */
  32. @TableField("contactor")
  33. private String contactor;
  34. /**
  35. * This field was generated by MyBatis Generator.
  36. * This field corresponds to the database column company_cantact_info.customer_manager
  37. */
  38. @TableField("customer_manager")
  39. private String customerManager;
  40. /**
  41. * This field was generated by MyBatis Generator.
  42. * This field corresponds to the database column company_cantact_info.contact_id
  43. */
  44. @TableField("contact_id")
  45. private Integer contactId;
  46. /**
  47. * This field was generated by MyBatis Generator.
  48. * This field corresponds to the database column company_cantact_info.contact_status
  49. */
  50. @TableField("contact_status")
  51. private Integer contactStatus;
  52. /**
  53. * This field was generated by MyBatis Generator.
  54. * This field corresponds to the database column company_cantact_info.sign_method
  55. */
  56. @TableField("sign_method")
  57. private Integer signMethod;
  58. /**
  59. * This field was generated by MyBatis Generator.
  60. * This field corresponds to the database column company_cantact_info.contact_remark
  61. */
  62. @TableField("contact_remark")
  63. private String contactRemark;
  64. /**
  65. * This field was generated by MyBatis Generator.
  66. * This field corresponds to the database column company_cantact_info.creatorid
  67. */
  68. @TableField("creatorid")
  69. private Integer creatorId;
  70. /**
  71. * This field was generated by MyBatis Generator.
  72. * This field corresponds to the database column company_cantact_info.createtime
  73. */
  74. @TableField("createtime")
  75. private Date createTime;
  76. /**
  77. * This field was generated by MyBatis Generator.
  78. * This field corresponds to the database column company_cantact_info.updaterid
  79. */
  80. @TableField("updaterid")
  81. private Integer updaterId;
  82. /**
  83. * This field was generated by MyBatis Generator.
  84. * This field corresponds to the database column company_cantact_info.updatetime
  85. */
  86. @TableField("updatetime")
  87. private Date updateTime;
  88. /**
  89. * This field was generated by MyBatis Generator.
  90. * This field corresponds to the database column company_cantact_info.isvalid
  91. */
  92. @TableField("isvalid")
  93. private Integer isvalid;
  94. }