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;
|
|
}
|