123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- 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;
- }
|