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; }