| | |
| | | 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; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author Jay |
| | |
| | | */ |
| | | @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 dataNo; |
| | | |
| | | /** |
| | | * 数据名称 |
| | | */ |
| | | private String dataName; |
| | | |
| | | /** |
| | | * 左侧长度(min) |
| | | */ |
| | | private Integer leftLength; |
| | | |
| | | /** |
| | | * 右侧侧长度(min) |
| | | * 右侧长度(min) |
| | | */ |
| | | private Integer rightLength; |
| | | |
| | | /** |
| | | * 上限 |
| | | */ |
| | | private BigDecimal limitH; |
| | | |
| | | /** |
| | | * 下限 |
| | | */ |
| | | private BigDecimal limitL; |
| | | |
| | | /** |
| | | * 排序 |
| | | */ |
| | | private Integer sort; |