zxl
昨天 d33b041f4b2a63a22682c9b3f344ef35f84b4542
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
package cn.lili.modules.member.entity.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 会员店铺收藏VO
 *
 * @author pikachu
 * @since 2020-02-25 14:10:16
 */
@Data
public class StoreCollectionVO {
 
    @ApiModelProperty(value = "店铺id")
    private String id;
 
    @ApiModelProperty(value = "店铺名称")
    private String storeName;
 
    @ApiModelProperty(value = "店铺Logo")
    private String storeLogo;
 
    @ApiModelProperty(value = "是否自营")
    private Boolean selfOperated;
}