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_setting")
|
public class ArcPointSettingEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 名称
|
*/
|
private String name;
|
|
/**
|
* 归档周期(shift、day、month、year)
|
*/
|
private String type;
|
|
/**
|
* 归档点位
|
*/
|
private String point;
|
|
/**
|
* 计算方法(none、sum、diff、avg)
|
*/
|
private String calculate;
|
|
/**
|
* 是否启用
|
*/
|
private String isEnable;
|
|
/**
|
* 创建时间
|
*/
|
private String createTime;
|
|
/**
|
* 更新时间
|
*/
|
private String updateTime;
|
}
|