Jenkins自动合并
commit
d98b05e479
@ -0,0 +1,10 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class GanttDragModel {
|
||||||
|
private Long workId;
|
||||||
|
private Long resId;
|
||||||
|
private Long targetWorkId;
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.model;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.aps.converter.CustomDateDeserializer;
|
||||||
|
import cn.estsh.i3plus.pojo.aps.converter.CustomDateSerializer;
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class GanttPlanModel {
|
||||||
|
private Long resourceId;
|
||||||
|
@JsonSerialize(using = CustomDateSerializer.class)
|
||||||
|
@JsonDeserialize(using = CustomDateDeserializer.class)
|
||||||
|
private Date startDate;
|
||||||
|
@JsonSerialize(using = CustomDateSerializer.class)
|
||||||
|
@JsonDeserialize(using = CustomDateDeserializer.class)
|
||||||
|
private Date endDate;
|
||||||
|
private String cls;
|
||||||
|
//private String timeRangeColor;
|
||||||
|
private String eventColor;
|
||||||
|
private String name;
|
||||||
|
private Long workId;
|
||||||
|
private List<Long> resIds;
|
||||||
|
}
|
Loading…
Reference in New Issue