package com.iailab.module.data.point.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2025年05月14日
|
*/
|
@Data
|
@TableName("t_da_cumulate_point")
|
public class DaExtremalPointEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 测点ID
|
*/
|
private String pointId;
|
|
/**
|
* 累计测点
|
*/
|
private String momentPoint;
|
|
/**
|
* 累计长度
|
*/
|
private Integer length;
|
|
/**
|
* 极值单位
|
*/
|
private String extremalUnit;
|
|
/**
|
* 极值类型(1:最大值,2:最小值)
|
*/
|
private Integer extremalType;
|
}
|