修改资源甘特图侧边栏显示内容
parent
2eb244c41c
commit
9627b6cf9e
@ -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