package com.example.server.progressTrack.Dto;
|
|
|
import lombok.Data;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @author 14539
|
*/
|
@Data
|
|
public class DiagramMajorDto {
|
private Long majorId;
|
private String majorName;
|
private String majorShortName;
|
|
private Date requiredCompletionTime;
|
private int sort;
|
|
private int[] widthArr= new int[4];
|
private int width;
|
private int useWidthNo;
|
|
private int maxFontWith;
|
private int sumFontWith;
|
private int sumFontWith2;
|
private int inspectNum;
|
|
private int branchWith;
|
private int branchWith1;
|
private int branchWith2;
|
|
private int height;
|
|
private int branchInspectMaxNum;
|
private int branchInspectMaxNum1;
|
private int branchInspectMaxNum2;
|
|
private int brachHeight;
|
private int brachHeight1;
|
private int brachHeight2;
|
|
private Long leftPhaseId;
|
private Long rightPhaseId;
|
|
private List<DiagramMajorBranchDto> branchs = new ArrayList<>();
|
private List<DiagramMajorBranchTimeDto> times = new ArrayList<>();
|
|
private List<DiagramMajorBranchTimeDto> times1 = new ArrayList<>();
|
private List<DiagramMajorBranchTimeDto> times2 = new ArrayList<>();
|
private List<DiagramNode2Dto> Inspections = new ArrayList<>();
|
}
|