2026-06-29 940c8481d2fdcf51341db4ccd6fd6fcc2d43debb
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
package cn.iocoder.yudao.module.mdm.controller.admin.category.vo;
 
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 = "管理后台 - MDM 物料分类分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MdmItemCategoryPageReqVO extends PageParam {
 
    @Schema(description = "分类编码", example = "CAT001")
    private String code;
 
    @Schema(description = "分类名称", example = "五金配件")
    private String name;
 
    @Schema(description = "父分类编号", example = "0")
    private Long parentId;
 
    @Schema(description = "物料类型", example = "1")
    private Integer itemType;
 
    @Schema(description = "状态", example = "0")
    private Integer status;
 
}