2026-04-13 e10b63a4b69eb4a55079ad372f1fa3b58d08a054
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;
}