| | |
| | | package com.oying.modules.pc.product.domain.dto; |
| | | |
| | | import com.oying.modules.pc.store.domain.StoreQualification; |
| | | import com.oying.modules.pc.store.domain.dto.StoreQualificationUpdateRequest; |
| | | import com.oying.modules.pc.product.domain.ProductLabel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ProductRevisionRecord { |
| | | |
| | | @ApiModelProperty(value = "店铺ID") |
| | | private Long storeId; |
| | | private Long productId; |
| | | |
| | | @ApiModelProperty(value = "店铺名称") |
| | | private String storeName; |
| | | private String barcode; |
| | | |
| | | @ApiModelProperty(value = "资质") |
| | | private List<StoreQualification> qualifications = new ArrayList<>(); |
| | | |
| | | @ApiModelProperty(value = "删除的资质") |
| | | private List<Long> deletedQualificationIds = new ArrayList<>(); |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "修改的资质") |
| | | private List<StoreQualificationUpdateRequest> updatedQualifications = new ArrayList<>(); |
| | | private String title; |
| | | |
| | | @ApiModelProperty(value = "新增的资质") |
| | | private List<StoreQualification> newQualifications = new ArrayList<>(); |
| | | |
| | | private Long categoryId; |
| | | |
| | | private Long secondCategoryId; |
| | | |
| | | private BigDecimal price; |
| | | |
| | | private Integer stockQuantity; |
| | | |
| | | private Integer minPurchaseQuantity; |
| | | |
| | | private Integer warnStock; |
| | | |
| | | private Integer weight; |
| | | |
| | | private Integer length; |
| | | |
| | | private Integer width; |
| | | |
| | | private Integer height; |
| | | |
| | | @ApiModelProperty(value = "是否支持退货") |
| | | private Integer returns; |
| | | |
| | | @ApiModelProperty(value = "是否支持自提") |
| | | private Integer selfPickup; |
| | | |
| | | private List<Long> deletedImageIds = new ArrayList<>(); |
| | | |
| | | private List<ProductImageUpdateRequest> updatedImages = new ArrayList<>(); |
| | | |
| | | private List<ProductImageCreateRequest> newImages = new ArrayList<>(); |
| | | |
| | | private List<Long> deletedLabelIds = new ArrayList<>(); |
| | | |
| | | private List<ProductLabel> updatedLabels = new ArrayList<>(); |
| | | |
| | | private List<ProductLabel> newLabels = new ArrayList<>(); |
| | | } |