package com.example.server.progressTrack.Dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
public class TableNodeDto {
|
private Long id;
|
|
private Long networkId;
|
|
@ApiModelProperty(value = "要求完成时间")
|
private String requiredCompletionTime;
|
|
@ApiModelProperty(value = "实际完成时间")
|
private String actualCompletion;
|
|
@ApiModelProperty(value = "当前状态")
|
private Integer currentStatus;
|
|
private String processName;
|
private String name;
|
|
private String time1Color;
|
private String time2Color;
|
private String time3Color;
|
private String time4Color;
|
private String time5Color;
|
|
}
|