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