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;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 测点表
|
*
|
* @author lirm ${email}
|
* @since 1.0.0 2023-06-21
|
*/
|
@Data
|
@TableName("t_da_point")
|
public class DaPointEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 测点编码
|
*/
|
private String pointNo;
|
|
/**
|
* 测点名称
|
*/
|
private String pointName;
|
|
/**
|
* 测点类型
|
*/
|
private String pointType;
|
|
/**
|
* 数据类型
|
*/
|
private String dataType;
|
|
/**
|
* 值类型
|
*/
|
private String valueType;
|
|
/**
|
* 存储类型
|
*/
|
private String storeType;
|
|
/**
|
* 测量单位
|
*/
|
private String unit;
|
|
/**
|
* 单位转换
|
*/
|
private BigDecimal unittransfactor;
|
|
/**
|
* 默认值
|
*/
|
private BigDecimal defaultValue;
|
|
/**
|
* 最大值
|
*/
|
private BigDecimal maxValue;
|
|
/**
|
* 最小值
|
*/
|
private BigDecimal minValue;
|
|
/**
|
* 采集频率
|
*/
|
private String minfreqid;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 是否启用
|
*/
|
private Integer isEnable;
|
/**
|
* 创建人
|
*/
|
private Long creator;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 修改人
|
*/
|
private Long updater;
|
/**
|
* 修改时间
|
*/
|
private Date updateTime;
|
}
|