jinlin
2025-04-28 efce7ce3e63712ecc8b4c3039a73b508fc3ea880
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
}