zss
2026-02-06 7df528176008256c3b177526274f89d391c61526
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;
}