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