huminmin
4 天以前 2495a8e1f71b6a0908a423765aaafd9ae0140d0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.basic.dto;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class ProductTreeDto {
    private Long id;
    private Long parentId;
    private String productName;
    private String label; // 用于树形结构的显示名称
    private List<ProductTreeDto> children;
}