jar
jinlin
2025-03-10 f0aae4b39afbcbb18fb5a0b32e3ca689662c5ca7
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
48
49
package com.example.server.progressTrack.Dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @author 14539
 */
@Data
 
public class DiagramNodeDto {
    private Long id;
    private String processName;
    @ApiModelProperty(value = "要求完成")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @JSONField(format = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private String requiredCompletion;
    @ApiModelProperty(value = "要求完成")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @JSONField(format = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private String actualCompletion;
    private int displayLocation;
    private int sort;
 
    @ApiModelProperty(value = "当前状态")
    private Integer currentStatus;
 
    private Long BoxId;
    private int fontWith;
 
    private int x;
    private int y;
    private int width;
    private int height;
 
    private Long topId;
    private Long rightId;
    private Long bottomId;
    private Long leftId;
/*    private NetworkDiagramPhase dataList;
    private List<DiagramInspectionDto> Inspections = new ArrayList<>();*/
}