Merge branch 'dev' into test
commit
0a7f6ebf24
@ -0,0 +1,14 @@
|
||||
package cn.estsh.i3plus.pojo.aps.model;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class GanttOrderModel {
|
||||
private Long id;
|
||||
private String code;
|
||||
private String name;
|
||||
private List<GanttOrderModel> children = new ArrayList<>();
|
||||
}
|
Loading…
Reference in New Issue