mitao
2025-01-10 b9679b6f96bbe8b52ee1d699033d9021d5fe870f
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
package com.ruoyi.system.api.domain.poji.shop;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 商户表
 * </p>
 *
 * @author jqs
 * @since 2023-04-25
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("t_shop")
public class Shop extends Model<Shop> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 商户id
     */
    @TableId(value = "shop_id", type = IdType.AUTO)
    private Long shopId;
    /**
     * 删除标记
     */
    @TableField("del_flag")
    private Integer delFlag;
    /**
     * 商户状态-1删除0冻结1正常2合作终止3进件中
     */
    @TableField("shop_status")
    private Integer shopStatus;
    @TableField("create_time")
    private Date createTime;
    @TableField("create_user_id")
    private Long createUserId;
    @TableField("update_time")
    private Date updateTime;
    @TableField("update_user_id")
    private Long updateUserId;
    /**
     * 商户名称
     */
    @TableField("shop_name")
    private String shopName;
    /**
     * 商户编号
     */
    @TableField("shop_number")
    private String shopNumber;
    /**
     * 商户类型1.经销商2.代理商
     */
    @TableField("shop_type")
    private Integer shopType;
    /**
     * 营业开始时间
     */
    @TableField("business_start_time")
    private String businessStartTime;
    /**
     * 营业结束时间
     */
    @TableField("business_end_time")
    private String businessEndTime;
    /**
     * 店主姓名
     */
    @TableField("shopowner_name")
    private String shopownerName;
    /**
     * 店主联系方式
     */
    @TableField("shopowner_phone")
    private String shopownerPhone;
    /**
     * 签约时间
     */
    @TableField("sign_time")
    private Date signTime;
    /**
     * 签约省code
     */
    @TableField("sign_province_code")
    private String signProvinceCode;
    /**
     * 签约市code
     */
    @TableField("sign_city_code")
    private String signCityCode;
    /**
     * 签约区域code
     */
    @TableField("sign_area_code")
    private String signAreaCode;
    /**
     * 签约区域全称
     */
    @TableField("sign_area_name")
    private String signAreaName;
    /**
     * 商户服务电话
     */
    @TableField("shop_service_phone")
    private String shopServicePhone;
    /**
     * 归属员工
     */
    @TableField("belong_user_id")
    private Long belongUserId;
    /**
     * 归属经销商
     */
    @TableField("belong_shop_id")
    private Long belongShopId;
    /**
     * 扶持能力1.有2.没有
     */
    @TableField("supporting_capacity_flag")
    private Integer supportingCapacityFlag;
    /**
     * 店面操作人数1.1人2.1人以上
     */
    @TableField("operation_person_flag")
    private Integer operationPersonFlag;
    /**
     * 执行力1.强2.弱
     */
    @TableField("executive_force_flag")
    private Integer executiveForceFlag;
    /**
     * 格局1.大2.小
     */
    @TableField("pattern_flag")
    private Integer patternFlag;
    /**
     * 人脉1.宽2.窄
     */
    @TableField("connection_flag")
    private Integer connectionFlag;
    /**
     * 经济能力1.强2.差
     */
    @TableField("economic_ability_flag")
    private Integer economicAbilityFlag;
    /**
     * 与合作商关系1.好2.差
     */
    @TableField("relation_partner")
    private Integer relationPartner;
    /**
     * 曾从事事业
     */
    @TableField("business_history")
    private String businessHistory;
    /**
     * 店铺地址省code
     */
    @TableField("shop_province_code")
    private String shopProvinceCode;
    /**
     * 店铺地址市code
     */
    @TableField("shop_city_code")
    private String shopCityCode;
    /**
     * 店铺地址区code
     */
    @TableField("shop_area_code")
    private String shopAreaCode;
    /**
     * 店铺区域全称
     */
    @TableField("shop_area_name")
    private String shopAreaName;
    /**
     * 店铺详细地址
     */
    @TableField("shop_address")
    private String shopAddress;
    /**
     * 店铺经度
     */
    @TableField("shop_longitude")
    private String shopLongitude;
    /**
     * 店铺维度
     */
    @TableField("shop_latitude")
    private String shopLatitude;
    /**
     * 店铺详情
     */
    @TableField("shop_detail")
    private String shopDetail;
    /**
     * 营销功能1开2关
     */
    @TableField("marketing_function_flag")
    private Integer marketingFunctionFlag;
    /**
     * 领券1开2关
     */
    @TableField("platform_coupon_flag")
    private Integer platformCouponFlag;
    /**
     * 生日卡1开2关
     */
    @TableField("platform_birthday_flag")
    private Integer platformBirthdayFlag;
    /**
     * 店铺设置状态
     */
    @TableField("shop_custom_status")
    private String shopCustomStatus;
    /**
     * 推荐人
     */
    @TableField("recommend_person")
    private String recommendPerson;
    /**
     * 合作截止时间
     */
    @TableField("cooperation_end_time")
    private Date cooperationEndTime;
    /**
     * 合作开始时间
     */
    @TableField("cooperation_start_time")
    private Date cooperationStartTime;
    /**
     * 商户标签
     */
    @TableField("shop_tags")
    private String shopTags;
    /**
     * 签约人
     */
    @TableField("sign_user_id")
    private Long signUserId;
    /**
     * 来源渠道
     */
    @TableField("shop_source")
    private String shopSource;
 
    /**
     * 冻结标记
     */
    @TableField("frozen_flag")
    private Integer frozenFlag;
 
    /**
     * 合作标记
     */
    @TableField("cooperative_flag")
    private Integer cooperativeFlag;
 
    /**
     * 扩展联系人
     */
    @TableField("extend_contacts")
    private String extendContacts;
 
    /**
     * 进件标记
     */
    @TableField("auth_flag")
    private Integer authFlag;
 
    /**
     * 分账标记
     */
    @TableField("account_flag")
    private Integer accountFlag;
    /**
     * 店铺二维码
     */
    @TableField("shop_code")
    private String shopCode;
 
    /**
     * 小鹅通讲师id
     */
    @TableField("xiaoe_guest_id")
    private String xiaoeUserId;
 
 
    @Override
    protected Serializable pkVal() {
        return this.shopId;
    }
 
}