xin
2025-05-30 b394df082b875856884d6d02cce2a43c49ad6704
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
package com.oying.modules.pc.search.view;
 
import com.oying.modules.pc.product.view.ProductSimpleView;
import com.oying.modules.pc.search.domain.dto.StoreSearchDto;
import lombok.Data;
 
import java.util.Collections;
import java.util.List;
 
/**
 * 搜索结果VO - 包含店铺和推荐商品
 * @author lzp
 * @date 2025-04-25
 */
@Data
public class StoreSearchView {
 
    // 店铺基础信息
    private Long storeId;
    private String storeName;
    private String storeLogoUrl;
    private Integer deliveryTime;
    private Integer distance;
 
    // 商品列表(通常3-5个推荐商品)
    private List<ProductSimpleView> recommendedProducts;
}