package com.simuwang.base.pojo.dos; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.util.Date; @Data @TableName("last_company_contact_info") public class LastCompanyContactInfoDO { /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.id */ @TableId(value = "id",type = IdType.AUTO) private Integer id; /** * 公司ID */ @TableField("company_id") private String companyId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.contact_date */ @TableField("contact_date") private Date contactDate; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.contactor */ @TableField("contactor") private String contactor; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.customer_manager */ @TableField("customer_manager") private String customerManager; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.contact_id */ @TableField("contact_id") private Integer contactId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.contact_status */ @TableField("contact_status") private Integer contactStatus; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.sign_method */ @TableField("sign_method") private Integer signMethod; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.contact_remark */ @TableField("contact_remark") private String contactRemark; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.creatorid */ @TableField("creatorid") private Integer creatorId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.createtime */ @TableField("createtime") private Date createTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.updaterid */ @TableField("updaterid") private Integer updaterId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.updatetime */ @TableField("updatetime") private Date updateTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column company_cantact_info.isvalid */ @TableField("isvalid") private Integer isvalid; }