| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | |
| | | } |