package com.goafanti.common.model; import java.util.Date; public class Customer { /** * id */ private String id; /** * 归属人id */ private String aid; /** * 客户类型(1-个人用户,2-公司用户) */ private String customerTyp; /** * 分享类型(1-个人用户,2-公共用户) */ private Integer shareTyp; /** * 代理人id */ private String agentId; /** * 公司意向 */ private String companyIntention; /** * 创建时间 */ private Date createTime; /** * 跟进进度(0-已发项目介绍资料,1-已约面谈,2-已发合同计划书,3-已报价,4-已发合同,5-已签合同,6-面谈中,7-已面签) */ private String followSituation; /** * 客户状态(0-新客户,1-意向客户,2-重点客户,3-面谈客户,4-签单客户,5-被拒绝客户) */ private String customerStatue; /** * 上级ID */ private String paid; /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.id * @return the value of customer.id * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.id * @param id the value for customer.id * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setId(String id) { this.id = id; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.aid * @return the value of customer.aid * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getAid() { return aid; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.aid * @param aid the value for customer.aid * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setAid(String aid) { this.aid = aid; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.customer_typ * @return the value of customer.customer_typ * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getCustomerTyp() { return customerTyp; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.customer_typ * @param customerTyp the value for customer.customer_typ * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setCustomerTyp(String customerTyp) { this.customerTyp = customerTyp; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.share_typ * @return the value of customer.share_typ * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public Integer getShareTyp() { return shareTyp; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.share_typ * @param shareTyp the value for customer.share_typ * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setShareTyp(Integer shareTyp) { this.shareTyp = shareTyp; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.agent_id * @return the value of customer.agent_id * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getAgentId() { return agentId; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.agent_id * @param agentId the value for customer.agent_id * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setAgentId(String agentId) { this.agentId = agentId; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.company_intention * @return the value of customer.company_intention * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getCompanyIntention() { return companyIntention; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.company_intention * @param companyIntention the value for customer.company_intention * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setCompanyIntention(String companyIntention) { this.companyIntention = companyIntention; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.create_time * @return the value of customer.create_time * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.create_time * @param createTime the value for customer.create_time * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.follow_situation * @return the value of customer.follow_situation * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getFollowSituation() { return followSituation; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.follow_situation * @param followSituation the value for customer.follow_situation * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setFollowSituation(String followSituation) { this.followSituation = followSituation; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.customer_statue * @return the value of customer.customer_statue * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getCustomerStatue() { return customerStatue; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.customer_statue * @param customerStatue the value for customer.customer_statue * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setCustomerStatue(String customerStatue) { this.customerStatue = customerStatue; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column customer.paid * @return the value of customer.paid * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public String getPaid() { return paid; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column customer.paid * @param paid the value for customer.paid * @mbg.generated Wed Oct 11 15:40:31 CST 2017 */ public void setPaid(String paid) { this.paid = paid; } }