zhuo
2025-04-14 8b1afe3fe677ed94888c72cbf0287abfa07349de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.basic.dto;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class TestItemDto {
 
    private Integer id;
 
    private String name;
 
    private List<ProductDto> children;
 
}