xin
2025-05-30 b394df082b875856884d6d02cce2a43c49ad6704
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.oying.modules.pc.category.domain.dto;
 
import com.oying.modules.pc.category.domain.PlatformCategory;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
@Data
public class PlatformCategoryUpdateRequest {
 
    @ApiModelProperty(value = "类目名称", example = "超市")
    private String name;
 
    @ApiModelProperty(value = "排序权重", example = "1")
    private Integer sortWeight;
 
    @ApiModelProperty(value = "上传类目图标文件ID", example = "2682827376555999239484")
    private Long iconUploadFileId;
 
    @ApiModelProperty(value = "是否启用", example = "1")
    private int active;
 
}