xiangpei
2025-05-27 f2cc79e9e83aafacc1af0e2c86e3c8df384fc895
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
package cn.lili.modules.store.entity.vos;
 
import cn.lili.modules.store.entity.enums.StoreStatusEnum;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 店铺基本信息DTO
 *
 * @author Bulbasaur
 * @since 2020/12/7 14:43
 */
@Data
public class StoreBasicInfoVO {
 
    @ApiModelProperty(value = "店铺ID")
    private String storeId;
 
    @ApiModelProperty(value = "店铺名称")
    private String storeName;
 
    /**
     * @see StoreStatusEnum
     */
    @ApiModelProperty(value = "店铺状态")
    private String storeDisable;
 
    @ApiModelProperty(value = "地址名称, ','分割")
    private String companyAddressPath;
 
    @ApiModelProperty(value = "店铺logo")
    private String storeLogo;
 
    @ApiModelProperty(value = "店铺简介")
    private String storeDesc;
 
    @ApiModelProperty(value = "PC端页面")
    private String pcPageData;
 
    @ApiModelProperty(value = "移动端页面")
    private String mobilePageData;
 
    @ApiModelProperty(value = "是否自营")
    private String selfOperated;
 
    @ApiModelProperty(value = "商品数量")
    private Integer goodsNum;
 
    @ApiModelProperty(value = "收藏数量")
    private Integer collectionNum;
 
    @ApiModelProperty(value = "腾讯云智服唯一标识")
    private String yzfSign;
 
    @ApiModelProperty(value = "腾讯云智服小程序唯一标识")
    private String yzfMpSign;
 
    @ApiModelProperty(value = "udesk标识")
    private String merchantEuid;
 
    @ApiModelProperty
    private String pageShow;
 
}