xyc
2024-08-06 a8230f1ab02069431738bd72f36ab95a0ace01ae
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
48
49
50
51
package com.zt.life.modules.mainPart.taskReliability.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.zt.common.entity.BusiEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.Date;
 
/**
 * simulat_assess
 *
 * @author zt generator 
 * @since 1.0.0 2024-03-20
 */
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("simulat_assess")
public class SimulatAssess extends BusiEntity {
    private static final long serialVersionUID = 1L;
 
 
    @ApiModelProperty(value = "产品节点ID")
    private Long productId;
 
    @ApiModelProperty(value = "总体任务模型ID")
    private Long taskModelId;
 
    @ApiModelProperty(value = "采样周期")
    private Integer samplPeriod;
 
    @ApiModelProperty(value = "仿真次数")
    private Integer simulatFrequency;
 
    @TableField(exist = false)
    private Long showProductId;
 
    @TableField(exist = false)
    private String dataType;
 
    @TableField(exist = false)
    private Integer taskDuration;
 
    @ApiModelProperty(value = "传给算法库的xml")
    private String xml;
 
    private String name;
}