xin
2025-07-07 c6a6f44907b37efe3f2e21b9d8f9350897fa92c0
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;
}