bug
jiangqs
2023-08-22 95044dd4dacee5f7ecb081af5d557d14fad83c24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
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;
    }
 
}