chenhj
5 天以前 36116dfe66585ae7bf1c40c9d14e0c5c168c2d72
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.web.controller.init.dto;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class AreaDTO {
    private String name;
    private String no;
    private List<AreaDTO> children;
}