订单甘特图Model

yun-zuoyi
gsz 4 years ago
parent cc6ab7dc42
commit cfdcf6aaff

@ -15,17 +15,19 @@ public class GanttOrderModel {
private String id;
private String code;
private String name;
private String operationName;
@JsonSerialize(using = CustomDateSerializer.class)
@JsonDeserialize(using = CustomDateDeserializer.class)
private Date startDate;
@JsonSerialize(using = CustomDateSerializer.class)
@JsonDeserialize(using = CustomDateDeserializer.class)
private Date endDate;
private String color;//颜色
private String color;
private Double percentDone;//完成百分比
private Boolean expanded;//是否展开树
private Boolean rollup;//自动把数据相加 在children的上层 当前
private long duration;//期间 --
private String unit;//期间单位 --
// private long duration;
private String durationUnit;
private Boolean manuallyScheduled;
private List<GanttOrderModel> children = new ArrayList<>();
}

Loading…
Cancel
Save