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;
|
|
@Data
|
@TableName("t_arc_data")
|
public class ArcPointDataEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 归档id
|
*/
|
private String arcId;
|
|
/**
|
* 值
|
*/
|
private String value;
|
|
/**
|
* 归档时间
|
*/
|
private String arcTime;
|
|
/**
|
* 创建时间
|
*/
|
private String createTime;
|
|
}
|