xin
2025-07-07 95d644b414f5a2e9b457aa2723e78e09f069d7bf
oying-system/src/main/java/com/oying/modules/pc/product/view/ProductImageCustomerView.java
@@ -1,12 +1,24 @@
package com.oying.modules.pc.product.view;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class ProductImageCustomerView {
    private String url;
    private Integer primaryFlag;
    @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;
}