1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package cn.iocoder.yudao.module.mdm.api.brand.dto;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Schema(description = "RPC 服务 - MDM 品牌 Response DTO")
| @Data
| public class MdmBrandRespDTO {
|
| @Schema(description = "品牌编号", requiredMode = Schema.RequiredMode.REQUIRED, 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;
|
| }
|
|