|
|
|
@ -10,15 +10,12 @@ import java.util.Date;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class GanttCalendarModel {
|
|
|
|
|
private Long parent;
|
|
|
|
|
private Long resourceId;
|
|
|
|
|
@JsonSerialize(using = CustomDateSerializer.class)
|
|
|
|
|
@JsonDeserialize(using = CustomDateDeserializer.class)
|
|
|
|
|
private Date start_date;
|
|
|
|
|
private Date startDate;
|
|
|
|
|
@JsonSerialize(using = CustomDateSerializer.class)
|
|
|
|
|
@JsonDeserialize(using = CustomDateDeserializer.class)
|
|
|
|
|
private Date end_date;
|
|
|
|
|
private String color;
|
|
|
|
|
private Long id;
|
|
|
|
|
private Long workId;
|
|
|
|
|
private String text;
|
|
|
|
|
private Date endDate;
|
|
|
|
|
private String cls;
|
|
|
|
|
}
|
|
|
|
|