2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
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
package cn.iocoder.yudao.module.wms.controller.admin.md.item.vo.sku;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
@Schema(description = "管理后台 - WMS 商品 SKU 分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class WmsItemSkuPageReqVO extends PageParam {
 
    @Schema(description = "商品编号", example = "I00000001")
    private String itemCode;
 
    @Schema(description = "商品名称", example = "华为 nova flip")
    private String itemName;
 
    @Schema(description = "商品分类编号", example = "1")
    private Long categoryId;
 
    @Schema(description = "商品品牌编号", example = "1")
    private Long brandId;
 
    @Schema(description = "规格编号", example = "S00000001")
    private String code;
 
    @Schema(description = "规格名称", example = "黑色")
    private String name;
 
    @Schema(description = "条码", example = "12345678")
    private String barCode;
 
}