xyc
2024-09-13 dea248c9da9f82e4032b6ab4a8ce0a6422a5c2cc
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.zt.life.modules.mainPart.taskReliability.model;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.zt.common.entity.BusiEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.List;
 
/**
 * model_line
 *
 * @author zt generator 
 * @since 1.0.0 2024-02-28
 */
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("algorithm")
public class Algorithm extends BusiEntity {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "")
    private Long modelId;
 
    @ApiModelProperty(value = "")
    private Long computerId;
 
    @ApiModelProperty(value = "")
    private Integer step;
 
    @ApiModelProperty(value = "")
    private String modelType;
 
    @ApiModelProperty(value = "")
    private String algorithmType;
 
    @ApiModelProperty(value = "")
    private String objectList;
 
    @ApiModelProperty(value = "")
    private String computerList;
 
    @ApiModelProperty(value = "表决数")
    private Integer voteNum;
 
}