1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package com.simuwang.base.pojo.vo;
- 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
- public class CompanyContactInfoVO {
- /**
- * 主键ID
- */
- private Integer id;
- /**
- * 公司ID
- */
- private String companyId;
- /**
- * 对接日期
- */
- private String contactDate;
- /**
- * 对接人
- */
- private String contactor;
- /**
- * 客户经理
- */
- private String customerManager;
- /**
- * 联系人ID
- */
- private Integer contactId;
- /**
- * 对接状态,1-已通知,2-有意向,3-暂无意向,4-考虑中,5-无联系方式
- */
- private Integer contactStatus;
- /**
- * 签约方式,1-托管平台授权,2-单方签约,3-双方签约
- */
- private Integer signMethod;
- /**
- * 对接备注
- */
- private String contactRemark;
- /**
- * 附件名称
- */
- private String cantactFileName;
- /**
- * 附件路径
- */
- private String contactFilePath;
- /**
- * 创建人
- */
- private Integer creatorId;
- /**
- * 创建时间
- */
- private String createTime;
- /**
- * 修改人
- */
- private Integer updaterId;
- /**
- * 修改时间
- */
- private String updateTime;
- /**
- * 有效标识
- */
- private Integer isvalid;
- }
|