xyc
2024-11-18 2d6c0d1cffe663b3b37ef7e0575cfe6e11d8fd85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zt.life.modules.mainPart.taskReliability.dto;
 
import lombok.Data;
 
@Data
public class TimeDiagramStatusDto {
    private double x1;
    private double x2;
    private int status;
 
    public TimeDiagramStatusDto(double x1, double x2, int status) {
        this.x1 = x1;
        this.x2 = x2;
        this.status = status;
    }
}