package com.example.server.progressTrack.Dto;
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
|
@Data
|
public class DiagramNode2Dto {
|
private Long id;
|
private Long boxId;
|
private Long networkId;
|
private Long majorId;
|
private Long constructionId;
|
private Long inspectionId;
|
private String inspectionCode;
|
private String requiredCompletionTime;
|
private String actualCompletion;
|
private Integer currentStatus;
|
|
private Long beginPhase;
|
private Long endPhase;
|
private String leftPhaseDate;
|
|
private int sort;
|
private String majorName;
|
private String projectListName;
|
private String processName;
|
|
private int nodeType;
|
|
private int fontWith;
|
private int fontHeight;
|
private int rowNum;
|
|
private int x;
|
private int y;
|
private int width;
|
private int height;
|
|
private int[] widthArr= new int[4];
|
|
private Long topId;
|
private Long rightId;
|
private Long bottomId;
|
private Long leftId;
|
}
|