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年05月11日
|
*/
|
@Data
|
@TableName("t_da_measure_point")
|
public class DaMeasurePointEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 测点ID
|
*/
|
private String pointId;
|
|
/**
|
* 数据源类型
|
*/
|
private String sourceType;
|
|
/**
|
* 数据源ID
|
*/
|
private String sourceId;
|
|
/**
|
* 测点Tag
|
*/
|
private String tagNo;
|
|
/**
|
* 平滑尺度
|
*/
|
private Integer dimension;
|
}
|