广丰卷烟厂数采质量分析系统
RuoYi-Vue-Plus/ruoyi-modules/ruoyi-qa/src/main/java/org/dromara/analy/domain/FeedmatchTimeData.java
old mode 100755 new mode 100644
@@ -5,13 +5,15 @@
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.io.Serial;
/**
 * 喂丝机分析对象 feedmatch_time_data
 * 喂丝机对应关系对象 feedmatch_time_data
 *
 * @author zhuguifei
 * @date 2026-01-29
 * @date 2026-03-02
 */
@Data
@EqualsAndHashCode(callSuper = true)
@@ -22,24 +24,14 @@
    private static final long serialVersionUID = 1L;
    /**
     * 时间
     * 时间戳
     */
    private Date time;
    /**
     * Key
     * 班次+机台
     */
    private String key;
    /**
     * 班次 (1位数字)
     */
    private Integer shift;
    /**
     * 设备号 (3位数字)
     */
    private Integer equNo;
    /**
     * 数据更新时间
@@ -49,106 +41,122 @@
    /**
     * 1#喂丝机对应的第一个储丝柜
     */
    private Integer fs11;
    private String fs11;
    /**
     * 1#喂丝机对应的第二个储丝柜
     */
    private Integer fs12;
    private String fs12;
    /**
     * 2#喂丝机对应的第一个储丝柜
     */
    private Integer fs21;
    private String fs21;
    /**
     * 2#喂丝机对应的第二个储丝柜
     */
    private Integer fs22;
    private String fs22;
    /**
     * 3#喂丝机对应的第一个储丝柜
     */
    private Integer fs31;
    private String fs31;
    /**
     * 3#喂丝机对应的第二个储丝柜
     */
    private Integer fs32;
    private String fs32;
    /**
     * 4#喂丝机对应的第一个储丝柜
     */
    private Integer fs41;
    private String fs41;
    /**
     * 4#喂丝机对应的第二个储丝柜
     */
    private Integer fs42;
    private String fs42;
    /**
     * 1#机组对应的喂丝机和管道
     */
    private Integer pipe01;
    private Long pipe01;
    /**
     * 2#机组对应的喂丝机和管道
     */
    private Integer pipe02;
    private Long pipe02;
    /**
     * 3#机组对应的喂丝机和管道
     */
    private Integer pipe03;
    private Long pipe03;
    /**
     * 4#机组对应的喂丝机和管道
     */
    private Integer pipe04;
    private Long pipe04;
    /**
     * 5#机组对应的喂丝机和管道
     */
    private Integer pipe05;
    private Long pipe05;
    /**
     * 6#机组对应的喂丝机和管道
     */
    private Integer pipe06;
    private Long pipe06;
    /**
     * 7#机组对应的喂丝机和管道
     */
    private Integer pipe07;
    private Long pipe07;
    /**
     * 8#机组对应的喂丝机和管道
     */
    private Integer pipe08;
    private Long pipe08;
    /**
     * 9#机组对应的喂丝机和管道
     */
    private Integer pipe09;
    private Long pipe09;
    /**
     * 10#机组对应的喂丝机和管道
     */
    private Integer pipe10;
    private Long pipe10;
    /**
     * 11#机组对应的喂丝机和管道
     */
    private Integer pipe11;
    private Long pipe11;
    /**
     * 12#机组对应的喂丝机和管道
     */
    private Integer pipe12;
    private Long pipe12;
    /**
     * 喂丝机状态 1-连接 0-断开
     */
    private Integer wsjState;
    private Long wsjState;
    /**
     * 班次
     */
    private Long shift;
    /**
     * 机台
     */
    private Long equNo;
    /**
     * 备注
     */
    private String remark;
}