huminmin
6 天以前 ca9120482042ad53be6a0532ac4f394c7d822581
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.warehouse.dto;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class WarehouseTreeDto {
    private Long id;
    private String label;
    private List<WarehouseTreeDto> children;
}