1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.iocoder.yudao.module.erp.controller.admin.product.vo.category;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Schema(description = "管理后台 - ERP 产品分类列表 Request VO")
| @Data
| public class ErpProductCategoryListReqVO {
|
| @Schema(description = "分类名称", example = "芋艿")
| private String name;
|
| @Schema(description = "开启状态", example = "1")
| private Integer status;
|
| }
|
|