| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.iailab.framework.mybatis.core.dataobject.BaseDO; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | */ |
| | | @Data |
| | | @TableName("t_st_suggest_snapshot_conf_det") |
| | | public class StSuggestSnapshotConfDetEntity extends BaseDO { |
| | | public class StSuggestSnapshotConfDetEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | private String id; |
| | | |
| | | /** |
| | | * 模型ID |
| | | * 快照配置ID |
| | | */ |
| | | private String confId; |
| | | |
| | |
| | | private String dataNo; |
| | | |
| | | /** |
| | | * 数据名称 |
| | | */ |
| | | private String dataName; |
| | | |
| | | /** |
| | | * 左侧长度(min) |
| | | */ |
| | | private Integer leftLength; |
| | | |
| | | /** |
| | | * 右侧侧长度(min) |
| | | * 右侧长度(min) |
| | | */ |
| | | private Integer rightLength; |
| | | |