xin
2025-07-19 f8bb85d9864702f411971b6133d69f8abce6441a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.oying.modules.pc.product.view;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ProductImageCustomerView {
 
    @ApiModelProperty(value = "商品图片ID")
    private Long imageId;
 
    @ApiModelProperty(value = "商品ID")
    private Long productId;
 
    @ApiModelProperty(value = "图片类型")
    private String imageType;
 
    @ApiModelProperty(value = "图片地址")
    private String imageUrl;
 
    @ApiModelProperty(value = "排序权重")
    private Integer sortWeight;
 
}