|
@@ -3,58 +3,51 @@ package com.goafanti.common.model;
|
|
|
public class CustomerUserInfo {
|
|
public class CustomerUserInfo {
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.id
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * id
|
|
|
*/
|
|
*/
|
|
|
private String id;
|
|
private String id;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.cid
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 客户记录id
|
|
|
*/
|
|
*/
|
|
|
private String cid;
|
|
private String cid;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.name
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 个人客户姓名
|
|
|
*/
|
|
*/
|
|
|
private String name;
|
|
private String name;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.sex
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 性别(0-男,1-女)
|
|
|
*/
|
|
*/
|
|
|
private String sex;
|
|
private String sex;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.mobile
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 座机号码
|
|
|
*/
|
|
*/
|
|
|
private String mobile;
|
|
private String mobile;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.email
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 手机号
|
|
|
|
|
+ */
|
|
|
|
|
+ private String telNum;
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 电子邮件
|
|
|
*/
|
|
*/
|
|
|
private String email;
|
|
private String email;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.qq
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * qq
|
|
|
*/
|
|
*/
|
|
|
private String qq;
|
|
private String qq;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.wechat
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 微信
|
|
|
*/
|
|
*/
|
|
|
private String wechat;
|
|
private String wechat;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.depatrment
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 部门
|
|
|
*/
|
|
*/
|
|
|
private String depatrment;
|
|
private String depatrment;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.customer_position
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 职位
|
|
|
*/
|
|
*/
|
|
|
private String customerPosition;
|
|
private String customerPosition;
|
|
|
/**
|
|
/**
|
|
|
- * This field was generated by MyBatis Generator. This field corresponds to the database column customer_user_info.remarks
|
|
|
|
|
- * @mbg.generated Wed Oct 11 15:42:45 CST 2017
|
|
|
|
|
|
|
+ * 备注
|
|
|
*/
|
|
*/
|
|
|
private String remarks;
|
|
private String remarks;
|
|
|
|
|
|
|
@@ -147,6 +140,14 @@ public class CustomerUserInfo {
|
|
|
public void setMobile(String mobile) {
|
|
public void setMobile(String mobile) {
|
|
|
this.mobile = mobile;
|
|
this.mobile = mobile;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public String getTelNum() {
|
|
|
|
|
+ return telNum;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setTelNum(String telNum) {
|
|
|
|
|
+ this.telNum = telNum;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* This method was generated by MyBatis Generator. This method returns the value of the database column customer_user_info.email
|
|
* This method was generated by MyBatis Generator. This method returns the value of the database column customer_user_info.email
|