2026-06-30 24681c81c09022f584a57006f2534b5f74723414
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
26
27
28
29
30
31
32
33
34
package cn.iocoder.yudao.module.product.controller.admin.brand.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import jakarta.validation.constraints.NotNull;
 
/**
* 商品品牌 Base VO,提供给添加、修改、详细的子 VO 使用
* 如果子 VO 存在差异的字段,请不要添加到这里,影响 Swagger 文档生成
*/
@Data
public class ProductBrandBaseVO {
 
    @Schema(description = "品牌名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "苹果")
    @NotNull(message = "品牌名称不能为空")
    private String name;
 
    @Schema(description = "品牌图片", requiredMode = Schema.RequiredMode.REQUIRED)
    @NotNull(message = "品牌图片不能为空")
    private String picUrl;
 
    @Schema(description = "品牌排序", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @NotNull(message = "品牌排序不能为空")
    private Integer sort;
 
    @Schema(description = "品牌描述", example = "描述")
    private String description;
 
    @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "0")
    @NotNull(message = "状态不能为空")
    private Integer status;
 
}