jinlin
2025-02-18 6250f74b2a02770a37f2f0144c762f7952a12bd6
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
package com.zt.life.modules.mainPart.taskReliability.model;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class FailureModel {
    public static final String TYPE_EXP = "exponential";
    public static final String TYPE_BIN = "sof";
    public static final String TYPE_WBL = "weibull";
    public static final String TYPE_FIX = "fixed";
 
    @ApiModelProperty(value = "ID")
    private Long id;
 
    @ApiModelProperty(value = "type")
    private String type;
 
    @ApiModelProperty(value = "参数1")
    private double param1;
 
    @ApiModelProperty(value = "参数2")
    private double param2;
 
    @ApiModelProperty(value = "参数3")
    private double param3;
}