package org.dromara.qa.analy.domain.vo; import java.util.Date; import org.dromara.qa.analy.domain.FeedmatchTimeData; import cn.idev.excel.annotation.ExcelIgnoreUnannotated; import cn.idev.excel.annotation.ExcelProperty; import io.github.linpeilie.annotations.AutoMapper; import lombok.Data; import java.io.Serial; import java.io.Serializable; /** * 喂丝机对应关系视图对象 feedmatch_time_data * * @author zhuguifei * @date 2026-03-02 */ @Data @ExcelIgnoreUnannotated @AutoMapper(target = FeedmatchTimeData.class) public class FeedmatchTimeDataVo implements Serializable { @Serial private static final long serialVersionUID = 1L; /** * 时间戳 */ @ExcelProperty(value = "时间戳") private Date time; /** * 班次+机台 */ @ExcelProperty(value = "班次+机台") private String key; /** * 数据更新时间 */ @ExcelProperty(value = "数据更新时间") private Date dacUpTime; /** * 1#喂丝机对应的第一个储丝柜 */ @ExcelProperty(value = "1#喂丝机对应的第一个储丝柜") private String fs11; /** * 1#喂丝机对应的第二个储丝柜 */ @ExcelProperty(value = "1#喂丝机对应的第二个储丝柜") private String fs12; /** * 2#喂丝机对应的第一个储丝柜 */ @ExcelProperty(value = "2#喂丝机对应的第一个储丝柜") private String fs21; /** * 2#喂丝机对应的第二个储丝柜 */ @ExcelProperty(value = "2#喂丝机对应的第二个储丝柜") private String fs22; /** * 3#喂丝机对应的第一个储丝柜 */ @ExcelProperty(value = "3#喂丝机对应的第一个储丝柜") private String fs31; /** * 3#喂丝机对应的第二个储丝柜 */ @ExcelProperty(value = "3#喂丝机对应的第二个储丝柜") private String fs32; /** * 4#喂丝机对应的第一个储丝柜 */ @ExcelProperty(value = "4#喂丝机对应的第一个储丝柜") private String fs41; /** * 4#喂丝机对应的第二个储丝柜 */ @ExcelProperty(value = "4#喂丝机对应的第二个储丝柜") private String fs42; /** * 1#机组对应的喂丝机和管道 */ @ExcelProperty(value = "1#机组对应的喂丝机和管道") private Long pipe01; /** * 2#机组对应的喂丝机和管道 */ @ExcelProperty(value = "2#机组对应的喂丝机和管道") private Long pipe02; /** * 3#机组对应的喂丝机和管道 */ @ExcelProperty(value = "3#机组对应的喂丝机和管道") private Long pipe03; /** * 4#机组对应的喂丝机和管道 */ @ExcelProperty(value = "4#机组对应的喂丝机和管道") private Long pipe04; /** * 5#机组对应的喂丝机和管道 */ @ExcelProperty(value = "5#机组对应的喂丝机和管道") private Long pipe05; /** * 6#机组对应的喂丝机和管道 */ @ExcelProperty(value = "6#机组对应的喂丝机和管道") private Long pipe06; /** * 7#机组对应的喂丝机和管道 */ @ExcelProperty(value = "7#机组对应的喂丝机和管道") private Long pipe07; /** * 8#机组对应的喂丝机和管道 */ @ExcelProperty(value = "8#机组对应的喂丝机和管道") private Long pipe08; /** * 9#机组对应的喂丝机和管道 */ @ExcelProperty(value = "9#机组对应的喂丝机和管道") private Long pipe09; /** * 10#机组对应的喂丝机和管道 */ @ExcelProperty(value = "10#机组对应的喂丝机和管道") private Long pipe10; /** * 11#机组对应的喂丝机和管道 */ @ExcelProperty(value = "11#机组对应的喂丝机和管道") private Long pipe11; /** * 12#机组对应的喂丝机和管道 */ @ExcelProperty(value = "12#机组对应的喂丝机和管道") private Long pipe12; /** * 喂丝机状态 1-连接 0-断开 */ @ExcelProperty(value = "喂丝机状态 1-连接 0-断开") private Long wsjState; /** * 班次 */ @ExcelProperty(value = "班次") private Long shift; /** * 机台 */ @ExcelProperty(value = "机台") private Long equNo; /** * 备注 */ @ExcelProperty(value = "备注") private String remark; }