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 2024年11月28日
|
*/
|
@Data
|
@TableName("t_da_cumulate_point")
|
public class DaCumulatePointEntity 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 Integer divisor;
|
}
|