package com.oying.modules.pc.product.domain.dto;
|
|
import lombok.Data;
|
|
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotNull;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
@Data
|
public class ProductMerchantUpdateRequest {
|
|
private String barcode;
|
|
private String name;
|
|
private String title;
|
|
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;
|
|
private Integer allowReturns;
|
|
private List<ProductImageCreateRequest> imageList;
|
|
private List<ProductLabelCreateRequest> specList;
|
|
}
|