package com.ruoyi.shop.domain.pojo.shop;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 商户客户信息
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-08-22
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("t_shop_detail")
|
public class ShopDetail extends Model<ShopDetail> {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 商户id
|
*/
|
@TableId("shop_id")
|
private Integer shopId;
|
/**
|
* 删除标记
|
*/
|
@TableField("del_flag")
|
private Integer delFlag;
|
/**
|
* 客户姓名
|
*/
|
@TableField("customer_name")
|
private String customerName;
|
/**
|
* 客户电话
|
*/
|
@TableField("customer_mobile")
|
private String customerMobile;
|
/**
|
* 手机归属地
|
*/
|
@TableField("mobile_belong_area")
|
private String mobileBelongArea;
|
/**
|
* 意向区域
|
*/
|
@TableField("intention_area")
|
private String intentionArea;
|
/**
|
* 意向方式
|
*/
|
@TableField("intention_type")
|
private String intentionType;
|
/**
|
* 开店初衷1本人操作2投资
|
*/
|
@TableField("open_shop_type")
|
private Integer openShopType;
|
/**
|
* 家庭情况
|
*/
|
@TableField("family_situation")
|
private String familySituation;
|
/**
|
* 经济情况
|
*/
|
@TableField("economic_situation")
|
private String economicSituation;
|
/**
|
* 朋友圈情况
|
*/
|
@TableField("friend_situation")
|
private String friendSituation;
|
/**
|
* 作主权
|
*/
|
@TableField("exercise_sovereignty")
|
private String exerciseSovereignty;
|
/**
|
* 客户简介
|
*/
|
@TableField("customer_introduction")
|
private String customerIntroduction;
|
/**
|
* 客户类型
|
*/
|
@TableField("customer_type")
|
private String customerType;
|
/**
|
* 客户等级
|
*/
|
@TableField("customer_level")
|
private String customerLevel;
|
/**
|
* 客户状态
|
*/
|
@TableField("customer_status")
|
private String customerStatus;
|
/**
|
* 所属行业
|
*/
|
@TableField("customer_industry")
|
private String customerIndustry;
|
/**
|
* 观摩类型
|
*/
|
@TableField("observation_type")
|
private String observationType;
|
/**
|
* 观摩门店id
|
*/
|
@TableField("observation_shop_id")
|
private Integer observationShopId;
|
/**
|
* 客户来源
|
*/
|
@TableField("customer_from")
|
private String customerFrom;
|
/**
|
* 客户性别
|
*/
|
@TableField("customer_gender")
|
private Integer customerGender;
|
/**
|
* 客户年龄
|
*/
|
@TableField("customer_age")
|
private Integer customerAge;
|
|
/**
|
* 关联企业微信用户id
|
*/
|
@TableField("relation_user_id")
|
private Long relationUserId;
|
/**
|
* 协作人
|
*/
|
@TableField("collaborate_user_id")
|
private String collaborateUserId;
|
/**
|
* 推荐人
|
*/
|
@TableField("referrer")
|
private String referrer;
|
/**
|
* 标签
|
*/
|
@TableField("customer_tags")
|
private String customerTags;
|
/**
|
* 备注
|
*/
|
@TableField("remark")
|
private String remark;
|
|
|
@Override
|
protected Serializable pkVal() {
|
return this.shopId;
|
}
|
|
}
|