package com.shlb.timescaledbutils.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.util.Date;
|
|
/**
|
* 喂丝机表
|
*/
|
@Data
|
@Accessors(chain = true)
|
@TableName("feedmatch_time_data")
|
public class FeedmatchTimeData {
|
|
/**
|
* 时间戳
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date time;
|
|
/**
|
* 设备编号
|
*/
|
private String key;
|
|
/**
|
* 数据更新时间 格式:'2024-11-29 09:13:43'
|
*/
|
private String dacUpTime;
|
|
/**
|
* 1#喂丝机对应的第一个储丝柜
|
*/
|
private String fs11;
|
|
/**
|
* 1#喂丝机对应的第二个储丝柜
|
*/
|
private String fs12;
|
|
/**
|
* 2#喂丝机对应的第一个储丝柜
|
*/
|
private String fs21;
|
|
/**
|
* 2#喂丝机对应的第二个储丝柜
|
*/
|
private String fs22;
|
|
/**
|
* 3#喂丝机对应的第一个储丝柜
|
*/
|
private String fs31;
|
|
/**
|
* 3#喂丝机对应的第二个储丝柜
|
*/
|
private String fs32;
|
|
/**
|
* 4#喂丝机对应的第一个储丝柜
|
*/
|
private String fs41;
|
|
/**
|
* 4#喂丝机对应的第二个储丝柜
|
*/
|
private String fs42;
|
|
/**
|
* 1#机组对应的喂丝机和管道
|
*/
|
private Integer pipe01;
|
|
/**
|
* 2#机组对应的喂丝机和管道
|
*/
|
private Integer pipe02;
|
|
/**
|
* 3#机组对应的喂丝机和管道
|
*/
|
private Integer pipe03;
|
|
/**
|
* 4#机组对应的喂丝机和管道
|
*/
|
private Integer pipe04;
|
|
/**
|
* 5#机组对应的喂丝机和管道
|
*/
|
private Integer pipe05;
|
|
/**
|
* 6#机组对应的喂丝机和管道
|
*/
|
private Integer pipe06;
|
|
/**
|
* 7#机组对应的喂丝机和管道
|
*/
|
private Integer pipe07;
|
|
/**
|
* 8#机组对应的喂丝机和管道
|
*/
|
private Integer pipe08;
|
|
/**
|
* 9#机组对应的喂丝机和管道
|
*/
|
private Integer pipe09;
|
|
/**
|
* 10#机组对应的喂丝机和管道
|
*/
|
private Integer pipe10;
|
|
/**
|
* 11#机组对应的喂丝机和管道
|
*/
|
private Integer pipe11;
|
|
/**
|
* 12#机组对应的喂丝机和管道
|
*/
|
private Integer pipe12;
|
|
/**
|
* 喂丝机状态 1-连接 0-断开
|
*/
|
private Integer wsjState;
|
|
/**
|
* 班次 (1位数字)
|
*/
|
private Integer shift;
|
|
/**
|
* 设备号 (3位数字)
|
*/
|
private Integer equNo;
|
}
|