cloudroam
2025-05-26 ce1dc7a19d10c6564ff5e3ef72d30a773fa99ead
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
package com.mzl.flower.dto.request.film;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class FilmCategoryCreateDTO {
    @ApiModelProperty(value = "分类名称")
    private String name;
 
    @ApiModelProperty(value = "父分类ID")
    private Long parentId;
 
    @ApiModelProperty(value = "分类类型")
    private String type;
 
    @ApiModelProperty(value = "分类编码")
    private String code;
 
    @ApiModelProperty(value = "排序")
    private Integer sortBy;
 
    @ApiModelProperty(value = "分类图标")
    private String imageUrl;
 
    @ApiModelProperty(value = "是否显示")
    private Boolean shown;
 
    @ApiModelProperty(value = "级别限制")
    private String levelLimit;