2026-03-23 68f30d6f2060f59ba2e542f468818cb442cf4c84
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;
}