xin
2025-05-30 347909bae241fff128b628ea6d12992d7e5b4b10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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;
 
}