xin
2025-06-24 b5e0a4f030f4741825b7a8d3d65bc1c2ba616ea1
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;
 
}