New file |
| | |
| | | package com.zt.life.modules.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; |
| | | |
| | | } |