~
k94314517
2025-06-18 2d1d8d97966cbdb119456a35959b8e783476a2a9
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
package com.doumee.dao.web.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/4/8 9:20
 */
@Data
public class CategoryVO {
 
    @ApiModelProperty(value = "分类主键")
    private Integer id;
 
    @ApiModelProperty(value = "分类名称")
    private String name;
 
    @ApiModelProperty(value = "父级分类主键",hidden = true)
    private Integer parentId;
 
    @ApiModelProperty(value = "子类集合")
    private List<CategoryVO> childList;
 
}