chenrui
2025-04-02 ed29342061c29cc16e36b17ae61d7b97a4dcb884
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.basic.dto;
 
import com.ruoyi.basic.pojo.StructureTestObject;
import lombok.Data;
 
import java.util.List;
 
@Data
public class StructureTestObjectDto extends StructureTestObject {
 
    private String name;
 
    private Integer workShopId;
 
    private String workShopName;
 
    private String objectType;
 
    private List<BasicTreeDto> children;
}