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
| package cn.iocoder.yudao.module.mdm.controller.admin.brand.vo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Schema(description = "管理后台 - MDM 品牌新增/修改 Request VO")
| @Data
| public class MdmBrandSaveReqVO {
|
| @Schema(description = "品牌编号", example = "1")
| private Long id;
|
| @Schema(description = "品牌编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "BRAND001")
| private String code;
|
| @Schema(description = "品牌名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "品牌A")
| private String name;
|
| @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "0")
| private Integer status;
|
| @Schema(description = "备注", example = "备注信息")
| private String remark;
|
| }
|
|