Cui Zhi Feng
2024-08-30 7a9f0231bd3d0e6fc40caec1b84ecf86b4ee3197
1
2
3
4
5
6
7
8
9
10
11
12
package com.mzl.flower.dto.response.system;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class AreaDTO {
    private String code;
    private String name;
    private List<AreaDTO> children;
}