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<>();*/
|
}
|