| | |
| | | package com.oying.modules.pc.product.view; |
| | | |
| | | import cn.hutool.core.collection.CollectionUtil; |
| | | import cn.hutool.core.collection.ListUtil; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.math.BigDecimal; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | |
| | | @ApiModelProperty(value = "版本号") |
| | | private Long version; |
| | | |
| | | @ApiModelProperty(value = "销量") |
| | | private Integer totalUnitsSold = 0; |
| | | |
| | | @ApiModelProperty(value = "月销售量") |
| | | private Integer monthlySales = 0; |
| | | private Integer monthlyUnitsSold = 0; |
| | | |
| | | private List<ProductImageCustomerView> images = new ArrayList<>(); |
| | | private List<ProductLabelCustomerView> labels = new ArrayList<>(); |