潘志宝
2024-12-11 cca8f689d8cb2ec4d3e757d9e3e4ccb7ed03e460
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.api.mcs.dto;
2
3 import lombok.Data;
4
5 import java.io.Serializable;
6 import java.util.List;
7
8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2024年07月31日
12  */
13 @Data
14 public class PredictItemTreeDTO implements Serializable {
15     private static final long serialVersionUID = 1L;
16
17     private String id;
18
19     private String label;
20
21     private List<PredictItemTreeDTO> children;
22 }