jiangqs
2023-06-24 ec09e9f2c72ff37654076c327008ac89ed32a8c3
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
package com.ruoyi.shop.domain.vo;
 
import com.ruoyi.common.core.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author jqs34
 * @ClassName MgtShopPageVo
 * @description: TODO
 * @date 2023年04月21日
 * @version: 1.0
 */
@Data
public class MgtShopPageVo {
 
    @ApiModelProperty(value = "商户id")
    private Long shopId;
 
    @Excel(name = "签约时间", width = 30)
    @ApiModelProperty("签约时间")
    private String signTime;
 
    @Excel(name = "商户名称", width = 30)
    @ApiModelProperty("商户名称")
    private String shopName;
 
    @Excel(name = "商户编号", width = 30)
    @ApiModelProperty("商户编号")
    private String shopNumber;
 
    @Excel(name = "商户标签", width = 30)
    @ApiModelProperty("商户标签")
    private String shopTags;
 
    @Excel(name = "签约人", width = 30)
    @ApiModelProperty("签约人")
    private String signUser;
 
    @Excel(name = "首提金额", width = 30)
    @ApiModelProperty("首提金额")
    private BigDecimal firstWithdraw;
 
    @Excel(name = "关联员工", width = 30)
    @ApiModelProperty("关联员工")
    private String belongUser;
 
    @Excel(name = "关联部门", width = 30)
    @ApiModelProperty("关联部门")
    private String belongDept;
 
    @Excel(name = "来源渠道", width = 30)
    @ApiModelProperty("来源渠道")
    private String shopSource;
 
    @Excel(name = "签约区域", width = 30)
    @ApiModelProperty("签约区域")
    private String signAreaName;
 
    @Excel(name = "合作期限", width = 30)
    @ApiModelProperty("合作期限")
    private String cooperationTime;
 
    @Excel(name = "店铺地址", width = 30)
    @ApiModelProperty("店铺地址")
    private String shopAddress;
 
    @Excel(name = "店主姓名", width = 30)
    @ApiModelProperty("店主姓名")
    private String shopownerName;
 
    @Excel(name = "店主联系方式", width = 30)
    @ApiModelProperty("店主联系方式")
    private String shopownerPhone;
 
    @Excel(name = "商户状态", width = 30)
    @ApiModelProperty("商户状态-1删除0冻结1正常2终止合作")
    private String shopStatus;
 
    @Excel(name = "商户活动次数", width = 30)
    @ApiModelProperty("商户活动次数")
    private Integer shopActivityCount;
 
    @Excel(name = "店铺设置状态", width = 30)
    @ApiModelProperty("店铺设置状态")
    private String shopCustomStatus;
}