package com.iailab.module.data.arc.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.util.Date;
|
|
@Data
|
@TableName("t_arc_setting")
|
public class ArcSettingEntity 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 Integer sort;
|
|
/**
|
* 是否启用
|
*/
|
private String isEnable;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
}
|