package com.doumee.dao.business.vo; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2024/12/2 10:02 
 | 
 */ 
 | 
@Data 
 | 
public class YwDeviceParentCateDataVO { 
 | 
  
 | 
    @ApiModelProperty(value = "分类主键", example = "1") 
 | 
    private Integer cateId; 
 | 
  
 | 
    @ApiModelProperty(value = "分类名称", example = "1") 
 | 
    private String cateName; 
 | 
  
 | 
    @ApiModelProperty(value = "数量", example = "1") 
 | 
    private Integer deviceAmount ; 
 | 
  
 | 
    @ApiModelProperty(value = "子分类数据", example = "1") 
 | 
    private List<YwDeviceCateDataVO> ywDeviceCateDataVOList; 
 | 
  
 | 
} 
 |