package com.example.server.progressTrack.Dto; import lombok.Data; import java.util.Date; @Data public class DiagramInspectionDto { private Long id; private Long boxId; private Long projectId; private Long diagramId; private Long majorId; private Long constructionId; private Long inspectionId; private String inspectionCode; private Date requiredCompletionTime; private Date actualCompletion; private Integer currentStatus; private Long beginPhase; private Long endPhase; private Date 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; }