package org.dromara.qa.domain;
|
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import java.util.Date;
|
import java.io.Serial;
|
|
/**
|
* 喂丝机分析对象 feedmatch_time_data
|
*
|
* @author zhuguifei
|
* @date 2026-01-29
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("feedmatch_time_data")
|
public class FeedmatchTimeData extends BaseEntity {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 时间
|
*/
|
private Date time;
|
|
/**
|
* Key
|
*/
|
private String key;
|
|
/**
|
* 班次 (1位数字)
|
*/
|
private Integer shift;
|
|
/**
|
* 设备号 (3位数字)
|
*/
|
private Integer equNo;
|
|
/**
|
* 数据更新时间
|
*/
|
private String dacUpTime;
|
|
/**
|
* 1#喂丝机对应的第一个储丝柜
|
*/
|
private Integer fs11;
|
|
/**
|
* 1#喂丝机对应的第二个储丝柜
|
*/
|
private Integer fs12;
|
|
/**
|
* 2#喂丝机对应的第一个储丝柜
|
*/
|
private Integer fs21;
|
|
/**
|
* 2#喂丝机对应的第二个储丝柜
|
*/
|
private Integer fs22;
|
|
/**
|
* 3#喂丝机对应的第一个储丝柜
|
*/
|
private Integer fs31;
|
|
/**
|
* 3#喂丝机对应的第二个储丝柜
|
*/
|
private Integer fs32;
|
|
/**
|
* 4#喂丝机对应的第一个储丝柜
|
*/
|
private Integer fs41;
|
|
/**
|
* 4#喂丝机对应的第二个储丝柜
|
*/
|
private Integer 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;
|
|
}
|