jiangqs
2023-07-15 b0b52cbabf7a4bc8e00fc328d14ac05336d0221e
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
package com.ruoyi.shop.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @ClassName StaffShopInfoGetVo
 * @Description TODO
 * @Author jqs
 * @Date 2023/7/14 16:47
 * @Version 1.0
 */
@Data
public class StaffShopInfoGetVo {
 
 
    @ApiModelProperty(value = "今日预约")
    private Integer todayReservation;
 
    @ApiModelProperty(value = "待处理订单")
    private Integer unHandleOrder;
 
    @ApiModelProperty(value = "合作商跟进任务")
    private Integer shopTask;
 
    @ApiModelProperty(value = "店铺营业额")
    private BigDecimal shopTurnover;
 
    @ApiModelProperty(value = "剩余周期人数")
    private Integer cycleSurp;
 
    @ApiModelProperty(value = "剩余体验人数")
    private Integer explorationSurp;
 
    @ApiModelProperty(value = "区域会员新增")
    private Integer newAreaMember;
 
    @ApiModelProperty(value = "区域营业额")
    private BigDecimal areaTurnover;
 
    @ApiModelProperty(value = "商户id")
    private Long shopId;
 
    @ApiModelProperty(value="商户名称")
    private String shopName;
 
    @ApiModelProperty(value="商户封面")
    private String shopPicture;
 
    @ApiModelProperty(value="营业开始时间")
    private String businessStartTime;
 
    @ApiModelProperty(value="营业结束时间")
    private String businessEndTime;
 
    @ApiModelProperty(value="店主姓名")
    private String shopownerName;
 
    @ApiModelProperty(value="店主联系方式")
    private String shopownerPhone;
 
    @ApiModelProperty(value="额外联系人")
    private List<ExtendContactsVo> extendContactsVoList;
 
    @ApiModelProperty(value="店铺地址")
    private String shopAddress;
 
    @ApiModelProperty(value = "店铺设置状态")
    private String shopCustomStatus;
 
    @ApiModelProperty(value="商户标签")
    private String shopTags;
 
    @ApiModelProperty(value="扶持能力1.有2.没有")
    private Integer supportingCapacityFlag;
 
    @ApiModelProperty(value="店面操作人数1.1人2.1人以上")
    private Integer operationPersonFlag;
 
    @ApiModelProperty(value="执行力1.强2.弱")
    private Integer executiveForceFlag;
 
    @ApiModelProperty(value="格局1.大2.小")
    private Integer patternFlag;
 
    @ApiModelProperty(value="人脉1.宽2.窄")
    private Integer connectionFlag;
 
    @ApiModelProperty(value="经济能力1.强2.差")
    private Integer economicAbilityFlag;
 
    @ApiModelProperty(value="与合作商关系1.好2.差")
    private Integer relationPartner;
 
    @ApiModelProperty(value="曾从事事业")
    private String businessHistory;
 
    @ApiModelProperty(value="冻结状态0解冻1冻结")
    private Integer frozenFlag;
}