rk
9 小时以前 7eebfc8a64d2cbbd73453a2b653d5a5bfd66a32f
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
package com.doumee.dao.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ShopCenterVO {
 
    @ApiModelProperty(value = "门店头像全路径")
    private String fullCoverImg;
 
    @ApiModelProperty(value = "门店头像半路径")
    private String coverImg;
 
    @ApiModelProperty(value = "门店名称")
    private String shopName;
 
    @ApiModelProperty(value = "联系人名称")
    private String linkName;
 
    @ApiModelProperty(value = "门店类型:0=个人;1=企业")
    private Integer companyType;
 
    @ApiModelProperty(value = "是否有消息")
    private Boolean hasMessage;
 
    @ApiModelProperty(value = "待核验订单数量")
    private Integer waitDepositCount;
 
    @ApiModelProperty(value = "待收货订单数量")
    private Integer waitReceiveCount;
 
}